Dzhamb's picture
Update utils.py
a6c4164
raw
history blame
198 Bytes
def get_text(title: str, abstract: str):
if abstract and title:
text = abstract + ' ' + title
elif title:
text = title
else:
text = None
return text
def get_label():
pass