Skip to content

Commit

Permalink
updated embedding path
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardcqian committed Mar 14, 2019
1 parent ad054f2 commit 15cd527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
X_train, X_test, y_train, y_test = train_test_split(X_data, y, test_size= 0.1, random_state = 1)

# Setup model parameters
EMBEDDING_FILE = "/home/edward/Documents/work/climate/glove.twitter.27B.200d.txt" # path to embedding file
EMBEDDING_FILE = "glove.twitter.27B.200d.txt" # path to embedding file
max_features = 20000 # we are only interested in top 50k most frequently used words
maxlen = 150 # tweets longer than 150 words will be truncated otherwise padded
embed_size = 200 # size of each vector (must match the size of the glove embedding)
Expand Down

0 comments on commit 15cd527

Please sign in to comment.