Inoob commited on
Commit
b32a0cf
·
verified ·
1 Parent(s): ede5a01

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -76,7 +76,7 @@ for x in samples:
76
  # Get the model output (Here, we simulate it or integrate your model inference)
77
  # For demonstration purposes, we'll reverse the input as the model output
78
  # Replace this part with your model's actual output
79
- model_output_full = "<back>" + true_output + "</back>"
80
 
81
  # Extract the text between <back> and </back> tags
82
  tag1 = model_output_full.find("<back>")
 
76
  # Get the model output (Here, we simulate it or integrate your model inference)
77
  # For demonstration purposes, we'll reverse the input as the model output
78
  # Replace this part with your model's actual output
79
+ model_output_full = st.text_input("Model Ouput:", "")
80
 
81
  # Extract the text between <back> and </back> tags
82
  tag1 = model_output_full.find("<back>")