4rooms commited on
Commit
5deec3b
·
verified ·
1 Parent(s): 6ce8a55

Upload tinysleepnet-supratak/config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. tinysleepnet-supratak/config.json +26 -0
tinysleepnet-supratak/config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_class": "physioex.models.tinysleepnet:TinySleepNet",
3
+ "model_kwargs": {
4
+ "n_classes": 5,
5
+ "in_chan": 1,
6
+ "sf": 100,
7
+ "n_rnn_units": 128,
8
+ "n_rnn_layers": 1
9
+ },
10
+ "training": {
11
+ "dataset": "sleepedf",
12
+ "channels": [
13
+ "EEG"
14
+ ],
15
+ "pipeline_preset": "raw",
16
+ "sequence_length": 20,
17
+ "max_epochs": 200,
18
+ "lr": 0.0001,
19
+ "weight_decay": 0.001,
20
+ "batch_size": 15,
21
+ "loss": "CrossEntropyLoss",
22
+ "fold": 0,
23
+ "early_stopping_patience": 50
24
+ },
25
+ "reference": "Supratak & Guo 2020 - TinySleepNet: An Efficient Deep Learning Model for Sleep Stage Scoring based on Raw Single-Channel EEG"
26
+ }