Mohammad Javad Darvishi
commited on
Commit
•
db8f37b
1
Parent(s):
5fdbc81
'update README.md'
Browse files- .gitignore +1 -0
- README.md +11 -1
- requirements.txt +4 -1
.gitignore
CHANGED
@@ -1,3 +1,4 @@
|
|
1 |
edf_file.edf
|
2 |
__pycache__/*
|
3 |
*.pyc
|
|
|
|
1 |
edf_file.edf
|
2 |
__pycache__/*
|
3 |
*.pyc
|
4 |
+
temp.py
|
README.md
CHANGED
@@ -10,4 +10,14 @@ pinned: false
|
|
10 |
license: mit
|
11 |
---
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
license: mit
|
11 |
---
|
12 |
|
13 |
+
|
14 |
+
# EEG Cls
|
15 |
+
Classify EEG data to normal and abnormal.
|
16 |
+
|
17 |
+
## Description
|
18 |
+
This app is a Streamlit app that allows you to classify EEG data.
|
19 |
+
|
20 |
+
## References
|
21 |
+
- [EEG-Clf](https://arxiv.org/abs/2309.10910)
|
22 |
+
|
23 |
+
|
requirements.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
1 |
streamlit
|
2 |
mne
|
3 |
-
matplotlib
|
|
|
|
|
|
|
|
1 |
streamlit
|
2 |
mne
|
3 |
+
matplotlib
|
4 |
+
braindecode
|
5 |
+
torch
|
6 |
+
numpy
|