davissong01
commited on
Commit
•
e1e0059
1
Parent(s):
c34a396
Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,5 @@ if text_input:
|
|
11 |
outputs = [pipe(line) for line in lines] # Process each line with the pipeline
|
12 |
|
13 |
for line, out in zip(lines, outputs): # Display original lines and their corresponding output
|
14 |
-
|
15 |
-
|
16 |
-
st.json(out)
|
|
|
11 |
outputs = [pipe(line) for line in lines] # Process each line with the pipeline
|
12 |
|
13 |
for line, out in zip(lines, outputs): # Display original lines and their corresponding output
|
14 |
+
st.write(f"Text: {line}")
|
15 |
+
st.json(out)
|
|