PaperClassification / common.py
Valeriy Sinyukov
Add authors to input
fe3279c
raw
history blame
233 Bytes
class Input:
def __init__(self, title, abstract=None, authors=None):
self.title = title
self.abstract = abstract if abstract is not None else abstract
self.authors = authors if authors is not None else ''