Spaces:
Runtime error
Runtime error
Update visualize.py
Browse files
src/visualization/visualize.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import streamlit as st
|
2 |
-
|
|
|
3 |
from src.models.predict_model import predict_model
|
4 |
|
5 |
|
@@ -11,6 +12,7 @@ def visualize():
|
|
11 |
https://www.linkedin.com/in/gbhatia30/) or [Github](https://github.com/gagan3012).*
|
12 |
"""
|
13 |
)
|
|
|
14 |
|
15 |
text = st.text_area("Enter text here")
|
16 |
if st.button("Generate Summary"):
|
|
|
1 |
import streamlit as st
|
2 |
+
import os
|
3 |
+
retval = os.getcwd()
|
4 |
from src.models.predict_model import predict_model
|
5 |
|
6 |
|
|
|
12 |
https://www.linkedin.com/in/gbhatia30/) or [Github](https://github.com/gagan3012).*
|
13 |
"""
|
14 |
)
|
15 |
+
st.write(retval)
|
16 |
|
17 |
text = st.text_area("Enter text here")
|
18 |
if st.button("Generate Summary"):
|