01Yassine commited on
Commit
fa3e2d4
·
verified ·
1 Parent(s): b7a3407

Upload config.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.yaml +96 -0
config.yaml ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ exp_name: CompSpoof_eat_AASIST_NoAug_seed42
2
+ output_dir: ./outputs/batch8_CompSpoof/
3
+ seed: 42
4
+ data:
5
+ sampling_rate: 16000
6
+ root_dir: /ds-slt/audio/yelkheir/CompSpoof
7
+ label_map:
8
+ spoof_spoof: 0
9
+ bonafide_bonafide: 1
10
+ spoof_bonafide: 0
11
+ bonafide_spoof: 0
12
+ original: 1
13
+ train:
14
+ dataset_type: StandardDataset
15
+ parquet_files:
16
+ - /netscratch/yelkheir/DeepFense/DeepFense/deepfense/config/parquets/CompSpoof/CompSpoof_train.parquet
17
+ dataset_names:
18
+ - CompSpoof_Train
19
+ batch_size: 32
20
+ shuffle: true
21
+ num_workers: 4
22
+ base_transform:
23
+ - type: pad
24
+ max_len: 64000
25
+ random_pad: true
26
+ pad_type: repeat
27
+ augment_transform: []
28
+ val:
29
+ dataset_type: StandardDataset
30
+ parquet_files:
31
+ - /netscratch/yelkheir/DeepFense/DeepFense/deepfense/config/parquets/CompSpoof/CompSpoof_dev.parquet
32
+ dataset_names:
33
+ - CompSpoof_Val
34
+ batch_size: 32
35
+ shuffle: false
36
+ num_workers: 4
37
+ base_transform:
38
+ - type: pad
39
+ max_len: 64000
40
+ pad_type: repeat
41
+ test:
42
+ dataset_type: StandardDataset
43
+ parquet_files:
44
+ - /netscratch/yelkheir/DeepFense/DeepFense/deepfense/config/parquets/CompSpoof/CompSpoof_eval.parquet
45
+ dataset_names:
46
+ - CompSpoof_Eval
47
+ batch_size: 32
48
+ shuffle: false
49
+ num_workers: 4
50
+ base_transform:
51
+ - type: pad
52
+ max_len: 64000
53
+ pad_type: repeat
54
+ model:
55
+ type: StandardDetector
56
+ frontend:
57
+ type: eat
58
+ args:
59
+ source: huggingface
60
+ ckpt_path: worstchan/EAT-large_epoch20_pretrain
61
+ freeze: false
62
+ backend:
63
+ type: AASIST
64
+ args:
65
+ input_dim: 1024
66
+ filts:
67
+ - 70
68
+ - - 1
69
+ - 32
70
+ - - 32
71
+ - 32
72
+ - - 32
73
+ - 64
74
+ - - 64
75
+ - 64
76
+ gat_dims:
77
+ - 64
78
+ - 32
79
+ loss:
80
+ - type: CrossEntropy
81
+ embedding_dim: 160
82
+ n_classes: 2
83
+ weight: 1.0
84
+ training:
85
+ trainer: StandardTrainer
86
+ epochs: 100
87
+ early_stopping_patience: 7
88
+ optimizer:
89
+ type: adam
90
+ lr: 1.0e-06
91
+ metrics:
92
+ ACC: {}
93
+ EER: {}
94
+ eval_every_epochs: 1
95
+ device: cuda
96
+ output_dir: ./outputs/batch8_CompSpoof/CompSpoof_eat_AASIST_NoAug_seed42_20260129_151059