Spaces:
Sleeping
Sleeping
Commit
·
1468b43
1
Parent(s):
9718b31
Bug fixes
Browse files
app.py
CHANGED
@@ -35,7 +35,7 @@ def clean_text(text):
|
|
35 |
text = re.sub(r'\s+', ' ', text).strip()
|
36 |
return text
|
37 |
|
38 |
-
def generateAnswer(question)
|
39 |
|
40 |
question = "<question>" + clean_text(question) + "<answer>"
|
41 |
|
@@ -51,7 +51,7 @@ def generateAnswer(question){
|
|
51 |
tokenizer.batch_decode(output_ids, skip_special_tokens=True)]
|
52 |
print(outputs_batch)
|
53 |
return outputs_batch[0]
|
54 |
-
|
55 |
|
56 |
|
57 |
iface = gradio.Interface(fn=generateAnswer, inputs="text", outputs="text")
|
|
|
35 |
text = re.sub(r'\s+', ' ', text).strip()
|
36 |
return text
|
37 |
|
38 |
+
def generateAnswer(question):
|
39 |
|
40 |
question = "<question>" + clean_text(question) + "<answer>"
|
41 |
|
|
|
51 |
tokenizer.batch_decode(output_ids, skip_special_tokens=True)]
|
52 |
print(outputs_batch)
|
53 |
return outputs_batch[0]
|
54 |
+
|
55 |
|
56 |
|
57 |
iface = gradio.Interface(fn=generateAnswer, inputs="text", outputs="text")
|