Tasfiya025 commited on
Commit
f9c9436
·
verified ·
1 Parent(s): 42b1b5d

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +24 -0
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "custom-eeg-cnn-spikdetector",
3
+ "architectures": [
4
+ "DeepCNNForTimeSeriesClassification"
5
+ ],
6
+ "model_type": "time_series_classification",
7
+ "input_channels": 19,
8
+ "time_steps": 512,
9
+ "num_classes": 2,
10
+ "kernel_size": 15,
11
+ "filters": [32, 64, 128],
12
+ "dropout_rate": 0.5,
13
+ "id2label": {
14
+ "0": "Background/Normal_EEG",
15
+ "1": "Epileptiform_Spike"
16
+ },
17
+ "label2id": {
18
+ "Background/Normal_EEG": 0,
19
+ "Epileptiform_Spike": 1
20
+ },
21
+ "problem_type": "binary_classification",
22
+ "sampling_rate": 256,
23
+ "pytorch_version": "2.1.0"
24
+ }