Spaces:
Sleeping
Sleeping
Valeriy Sinyukov
commited on
Commit
·
f390658
1
Parent(s):
4d7b773
Add Input class, which represents input to a model
Browse files- src/common.py +4 -0
src/common.py
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
class Input:
|
2 |
+
def __init__(self, title, abstract=None):
|
3 |
+
self.title = title
|
4 |
+
self.abstract = abstract if abstract is not None else abstract
|