Update app.py
Browse files
app.py
CHANGED
|
@@ -10,6 +10,17 @@ from misc import *
|
|
| 10 |
|
| 11 |
import streamlit as st
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
# Create two columns with st.columns (new way)
|
| 14 |
col1, col2 = st.columns(2)
|
| 15 |
|
|
|
|
| 10 |
|
| 11 |
import streamlit as st
|
| 12 |
|
| 13 |
+
# Add the title and instructions
|
| 14 |
+
st.title("EEG Classification Demo")
|
| 15 |
+
st.write("""
|
| 16 |
+
This demo allows you to upload an EEG recording file in the EDF format.
|
| 17 |
+
The model will process your uploaded file and predict whether the EEG signal is classified as **Normal** or **Abnormal**.
|
| 18 |
+
Please follow the steps below to get started:
|
| 19 |
+
1. Upload your recorded EEG file (in .edf format).
|
| 20 |
+
2. The system will preprocess the data and make a prediction based on the signal.
|
| 21 |
+
3. Check the result to see the classification outcome.
|
| 22 |
+
""")
|
| 23 |
+
|
| 24 |
# Create two columns with st.columns (new way)
|
| 25 |
col1, col2 = st.columns(2)
|
| 26 |
|