-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinein.py
executable file
·46 lines (40 loc) · 1.09 KB
/
linein.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import markov
import dialogue
import pickle
import nltk
def learn(mdict, fname):
fname = '../Master source list/' + fname
filein = open(fname)
fulltext = [line.strip() for line in filein]
filein.close()
if fulltext[0] == 'list:':
print 'reading files from ' + fname
fulltext = fulltext[1:]
for text in fulltext:
learn(mdict, text)
print 'finished reading files from ' + fname
else:
print 'learning ' + fname
for line in fulltext:
for s in dialogue.sentencify(line):
mdict.learn(s)
print 'learning complete'
def main():
fname = raw_input('Enter a text file to learn from (or a list of texts): ')
print 'loading dictionary...'
try:
pkl_file = open('dictionary.pkl', 'rb')
mdict = pickle.load(pkl_file)
pkl_file.close()
print 'dictionary loaded'
except IOError:
mdict = markov.MarkovDict()
print 'error loading dictionary. Using new dictionary instead.'
learn(mdict, fname)
print 'saving dictionary...'
output = open('dictionary.pkl', 'wb')
pickle.dump(mdict, output, -1)
output.close()
print 'save complete, ending program'
if __name__ == "__main__":
main()