Skip to content

Instantly share code, notes, and snippets.

View XinyueZ's full-sized avatar
🙊
Make sense, don't touch

ChrisDEV XinyueZ

🙊
Make sense, don't touch
View GitHub Profile
@XinyueZ
XinyueZ / laptop_price_prediction.ipynb
Created July 29, 2022 09:39
laptop_price_prediction.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@XinyueZ
XinyueZ / pca_image_reduction.ipynb
Created May 26, 2022 11:21
PCA_image_reduction.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@XinyueZ
XinyueZ / collaborative_filtering.ipynb
Created May 10, 2022 05:15
collaborative_filtering.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@XinyueZ
XinyueZ / user_content_filtering.ipynb
Created May 10, 2022 05:14
user_content_filtering.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@XinyueZ
XinyueZ / tf-household_power-exam-edition-seq2seq-multi-future-tx.ipynb
Created May 10, 2022 05:12
TF household_power EXAM EDITION(seq2seq: multi future tx).ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@XinyueZ
XinyueZ / bernoulli-event-model.ipynb
Created May 10, 2022 05:11
Bernoulli Event Model.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@XinyueZ
XinyueZ / multinomial-event-model.ipynb
Created May 10, 2022 05:10
Multinomial Event Model.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@XinyueZ
XinyueZ / hog_svm_paper_scissors_rock.ipynb
Created May 10, 2022 05:09
HOG_SVM_Paper_Scissors_Rock.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@XinyueZ
XinyueZ / sarcasm_bi_lstm.ipynb
Created May 10, 2022 05:08
sarcasm_Bi_LSTM.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@XinyueZ
XinyueZ / even_odd_index.py
Last active May 30, 2022 09:24
Python tips: list access even and odd position
import numpy as np
random_np = np.random.uniform(size=(10))
print("random_np: ", random_np)
print("odd index:", random_np[1::2])
print("even index:", random_np[::2])