TSA / textInput.py
QINGCHE's picture
fix bugs
8670f86
raw
history blame
388 Bytes
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,int(topic_num),int(max_length))
keysText = "\n".join(keys)
outputText = "\n".join(output)
return keys, output
def file_dump_to_json(file):
return