Spaces:
Runtime error
Runtime error
Commit
·
df5de91
1
Parent(s):
062c36e
Update models.py
Browse files
models.py
CHANGED
|
@@ -8,6 +8,6 @@ class SentimentResult(database.Base):
|
|
| 8 |
|
| 9 |
id = Column(Integer, primary_key=True, index=True)
|
| 10 |
text_input = Column(String)
|
| 11 |
-
|
| 12 |
-
|
| 13 |
created_at = Column(DateTime, default=datetime.utcnow)
|
|
|
|
| 8 |
|
| 9 |
id = Column(Integer, primary_key=True, index=True)
|
| 10 |
text_input = Column(String)
|
| 11 |
+
score = Column(Float)
|
| 12 |
+
label = Column(String)
|
| 13 |
created_at = Column(DateTime, default=datetime.utcnow)
|