ArXivAudio / preprocess.py
Archan's picture
Create new file
897c843
raw
history blame contribute delete
No virus
177 Bytes
def pre_process(content=""):
text = content.splitlines()
final_text = ""
for i in text:
if len(i) > 1:
final_text += " "+i
return final_text