Update README.md
Browse files
README.md
CHANGED
@@ -100,6 +100,8 @@ def predict_sentiment(text, image):
|
|
100 |
print(id2label[prediction[0].item()])
|
101 |
return id2label[prediction[0].item()]
|
102 |
|
|
|
|
|
103 |
predict_sentiment(text, image)
|
104 |
```
|
105 |
|
|
|
100 |
print(id2label[prediction[0].item()])
|
101 |
return id2label[prediction[0].item()]
|
102 |
|
103 |
+
text = "I feel good today"
|
104 |
+
image = "link-to-image"
|
105 |
predict_sentiment(text, image)
|
106 |
```
|
107 |
|