Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -31,6 +31,7 @@ def predict(user_input):
|
|
31 |
if user_input == "Print_data_hmm":
|
32 |
with open("question_answer.json", "r") as file:
|
33 |
print(json.load(file))
|
|
|
34 |
return "Done"
|
35 |
else:
|
36 |
inputs = tokenizer(user_input, return_tensors="tf", padding=True, truncation=True,max_length=128)
|
|
|
31 |
if user_input == "Print_data_hmm":
|
32 |
with open("question_answer.json", "r") as file:
|
33 |
print(json.load(file))
|
34 |
+
print()
|
35 |
return "Done"
|
36 |
else:
|
37 |
inputs = tokenizer(user_input, return_tensors="tf", padding=True, truncation=True,max_length=128)
|