amitu009 commited on
Commit
e3e3bc6
·
1 Parent(s): e415789

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ from transformers import pipeline
4
 
5
  sentiment = pipeline("question-answering")
6
 
7
- def main(question, context):
8
  answer = pipe(question=question, context="i am genuis")
9
  return answer["answer"]
10
 
 
4
 
5
  sentiment = pipeline("question-answering")
6
 
7
+ def get_sentiment(question, context):
8
  answer = pipe(question=question, context="i am genuis")
9
  return answer["answer"]
10