Commit 6cc9064f by Will Daly

Remove random.seed call in essay_set

parent 5dbcad33
...@@ -130,7 +130,6 @@ class EssaySet(object): ...@@ -130,7 +130,6 @@ class EssaySet(object):
dictionary is a fixed dictionary (list) of words to replace. dictionary is a fixed dictionary (list) of words to replace.
max_syns defines the maximum number of additional essays to generate. Do not set too high. max_syns defines the maximum number of additional essays to generate. Do not set too high.
""" """
random.seed(1)
e_toks = nltk.word_tokenize(e_text) e_toks = nltk.word_tokenize(e_text)
all_syns = [] all_syns = []
for word in e_toks: for word in e_toks:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment