hema1 commited on
Commit
6f00501
·
1 Parent(s): 4650c6d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,8 +9,8 @@ from transformers import pipeline
9
 
10
  nlp = pipeline("question-answering", model=model, tokenizer=tokenizer)
11
 
12
- context = "A team is a group of individuals who come together to achieve a common goal or objective. The members of a team typically have complementary skills and expertise that they bring to the group, and they work collaboratively to complete tasks and projects."
13
- question = "what is team?"
14
 
15
  result = nlp(question = question, context=context)
16
 
 
9
 
10
  nlp = pipeline("question-answering", model=model, tokenizer=tokenizer)
11
 
12
+ context = "My name is Ajulor Christian, i am a data scientist and machine learning engineer."
13
+ question = "what is my profession?"
14
 
15
  result = nlp(question = question, context=context)
16