Skip to content

Commit 30b2f7b

Browse files
authored
Update textClassifierRNN.py
1 parent 27ad6b5 commit 30b2f7b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

textClassifierRNN.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# author - Richard Liao
2+
# Dec 26 2016
13
import numpy as np
24
import pandas as pd
35
import cPickle
@@ -79,7 +81,7 @@ def clean_str(string):
7981
print y_train.sum(axis=0)
8082
print y_val.sum(axis=0)
8183

82-
GLOVE_DIR = "/ext/home/analyst/Testground/data/glove"
84+
GLOVE_DIR = "~/Testground/data/glove"
8385
embeddings_index = {}
8486
f = open(os.path.join(GLOVE_DIR, 'glove.6B.100d.txt'))
8587
for line in f:

0 commit comments

Comments
 (0)