Skip to content
Snippets Groups Projects
Commit 244cfe42 authored by blunck's avatar blunck
Browse files

fix

parent f1ac7f8a
No related branches found
No related tags found
No related merge requests found
......@@ -48,9 +48,9 @@ if __name__ == '__main__':
#print(pos_bigram_vocab) #already lookin' good
# inputs:
train_inputs = [create_vector(el, unigram_vocab)
train_inputs = [create_vector(el, unigram_vocab, pos_bigram_vocab)
for el in train_set] # 1000 vectors
test_inputs = [create_vector(el, unigram_vocab)
test_inputs = [create_vector(el, unigram_vocab, pos_bigram_vocab)
for el in test_set] # 254 vectors
# labels
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment