Spaces:
Runtime error
Runtime error
Yash Sachdeva
commited on
Commit
·
a24d5ec
1
Parent(s):
9e0793f
question
Browse files- question_paper.py +1 -1
question_paper.py
CHANGED
@@ -30,7 +30,7 @@ def llama(input):
|
|
30 |
|
31 |
# tresponse = TOKENIZER.decode(tokens[0], skip_special_tokens=False)
|
32 |
# print(tresponse)
|
33 |
-
outputs = generator(input, max_length=100
|
34 |
text = ""
|
35 |
for o in outputs:
|
36 |
text = text + ' ' + o["generated_text"]
|
|
|
30 |
|
31 |
# tresponse = TOKENIZER.decode(tokens[0], skip_special_tokens=False)
|
32 |
# print(tresponse)
|
33 |
+
outputs = generator(input, max_length=100)
|
34 |
text = ""
|
35 |
for o in outputs:
|
36 |
text = text + ' ' + o["generated_text"]
|