nppmatt commited on
Commit
e9925e0
1 Parent(s): d1e02d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -3,4 +3,8 @@ import torch
3
  import torch.nn.functional as TF
4
  import streamlit as st
5
 
6
- classifier = pipeline("sentiment-analysis")
 
 
 
 
 
3
  import torch.nn.functional as TF
4
  import streamlit as st
5
 
6
+ classifier = pipeline("sentiment-analysis")
7
+ defaultTxt = "I hate you cancerous insects so much"
8
+ result = classifier(defaultTxt)
9
+
10
+ print(result)