Update app.py
Browse files
app.py
CHANGED
@@ -48,9 +48,10 @@ def predict_text(text):
|
|
48 |
st.write("This case does not belong to any known section.")
|
49 |
|
50 |
return predictions
|
51 |
-
|
|
|
52 |
# Streamlit app interface
|
53 |
-
st.title("Legal Section Classification")
|
54 |
st.write("Enter the text for case classification:")
|
55 |
|
56 |
# Text input for case description
|
|
|
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")
|
55 |
st.write("Enter the text for case classification:")
|
56 |
|
57 |
# Text input for case description
|