Update app.py
Browse files
app.py
CHANGED
@@ -48,7 +48,7 @@ def predict_text(text):
|
|
48 |
st.write("This case does not belong to any known section.")
|
49 |
|
50 |
return predictions
|
51 |
-
|
52 |
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
53 |
# Streamlit app interface
|
54 |
st.title("Legal Section Classification for FIR")
|
|
|
48 |
st.write("This case does not belong to any known section.")
|
49 |
|
50 |
return predictions
|
51 |
+
with open("style.css") as f:
|
52 |
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
53 |
# Streamlit app interface
|
54 |
st.title("Legal Section Classification for FIR")
|