PaperClassification / common.py
Valeriy Sinyukov
Fix abstract bug
8670c25
raw
history blame
227 Bytes
class Input:
def __init__(self, title, abstract=None, authors=None):
self.title = title
self.abstract = abstract if abstract is not None else ''
self.authors = authors if authors is not None else ''