Update src/streamlit_app.py
Browse files- src/streamlit_app.py +4 -1
src/streamlit_app.py
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import tensorflow as tf
|
| 3 |
from tensorflow import keras
|
|
@@ -259,4 +261,5 @@ st.markdown("---")
|
|
| 259 |
st.markdown("Developed as part of the Personalized Weather Intelligence project.")
|
| 260 |
|
| 261 |
print("Current working directory:", os.getcwd())
|
| 262 |
-
print("Files in current directory:", os.listdir())
|
|
|
|
|
|
| 1 |
+
os.environ["HOME"] = os.getcwd()
|
| 2 |
+
|
| 3 |
import streamlit as st
|
| 4 |
import tensorflow as tf
|
| 5 |
from tensorflow import keras
|
|
|
|
| 261 |
st.markdown("Developed as part of the Personalized Weather Intelligence project.")
|
| 262 |
|
| 263 |
print("Current working directory:", os.getcwd())
|
| 264 |
+
print("Files in current directory:", os.listdir())
|
| 265 |
+
|