Last active
December 10, 2019 16:10
-
-
Save aballah-chamakh/74a9c216220d74cc82ed988281db90fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.db import models | |
from django.contrib.auth.models import User | |
class SentimentAnalysisInference(models.Model): | |
user = models.OneTOneField(User,on_delete=models.CASCADE) | |
text = models.TextField() | |
result = models.CharField(max_length=255) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment