challenging-america-word-ga.../lm0.py

17 lines
439 B
Python
Raw Normal View History

2023-03-29 11:11:08 +02:00
import sys
2023-03-29 11:30:41 +02:00
import random
distribs = [
'a:0.6 the:0.2 :0.2',
'the:0.7 a:0.2 :0.1',
'the:0.9 :0.1',
'in:0.3 of:0.2 to:0.15 and:0.15 a:0.05 the:0.05 be:0.05 :0.05',
'the:0.3 be:0.2 to:0.15 of:0.15 and:0.05 a:0.05 in:0.05 :0.05',
'of:0.3 in:0.2 to:0.15 and:0.15 a:0.05 the:0.05 be:0.05 :0.05'
]
2023-03-29 11:11:08 +02:00
for line in sys.stdin:
ctx = line.split('\t')[6:]
2023-03-29 11:30:41 +02:00
i = random.randint(0, len(distribs) - 1)
print(distribs[i])