File size: 378 Bytes
cbc1d23 2fcd7a2 cbc1d23 2fcd7a2 0fba546 cbc1d23 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import run
def text_dump_to_json(text,topic_num,max_length):
lines = [x.strip() for x in text.split("\n") if x.strip()!='']
sentences = run.texClear(lines)
keys, output = run.textToAb(sentences,lines,topic_num,max_length)
keysText = "\n".join(keys)
outputText = "\n".join(output)
return keys, output
def file_dump_to_json(file):
return |