groadabike commited on
Commit
098ebde
·
verified ·
1 Parent(s): 59721d3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -56
README.md CHANGED
@@ -1,61 +1,57 @@
1
  ---
2
- {}
 
 
 
 
 
 
 
 
 
 
3
  ---
4
 
5
- ---
6
- license: apache-2.0
7
- language:
8
- - en
9
- tags:
10
- - hearing loss
11
- - challenge
12
- - signal processing
13
- - source separation
14
- - audio
15
- - audio-to-audio
16
- - Causal
17
- ---
18
-
19
- # Cadenza Challenge: CAD2-Task1
20
-
21
- A Causal separation model for the CAD2-Task2 system.
22
-
23
- This model is an ensemble of the following instruments:
24
- - Bassoon
25
- - Cello
26
- - Clarinet
27
- - Flute
28
- - Oboe
29
- - Sax
30
- - Viola
31
- - Violin
32
- Each model is based on the ConvTasNet (Kaituo XU) with multichannel support (Alexandre Defossez).
33
- * Parameters:
34
- * B: 256
35
- * C: 2
36
- * H: 512
37
- * L: 20
38
- * N: 256
39
- * P: 3
40
- * R: 3
41
- * X: 8
42
- * audio_channels: 2
43
- * causal: true
44
- * mask_nonlinear: relu
45
- * norm_type: cLN
46
-
47
- ## Dataset
48
- The model was trained using EnsembleSet and CadenzaWoodwind datasets.
49
-
50
- ## How to use
51
-
52
- ```
53
- from dynamic_source_separator import DynamicSourceSeparator
54
-
55
- model = DynamicSourceSeparator.from_pretrained(
56
- "cadenzachallenge/Dynamic_Source_Separator_Causal"
57
- ).cpu()
58
-
59
- ```
60
 
61
 
 
1
  ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - hearing loss
7
+ - challenge
8
+ - signal processing
9
+ - source separation
10
+ - audio
11
+ - audio-to-audio
12
+ - Causal
13
  ---
14
 
15
+ # Cadenza Challenge: CAD2-Task1
16
+
17
+ A Causal separation model for the CAD2-Task2 system.
18
+
19
+ This model is an ensemble of the following instruments:
20
+ - Bassoon
21
+ - Cello
22
+ - Clarinet
23
+ - Flute
24
+ - Oboe
25
+ - Sax
26
+ - Viola
27
+ - Violin
28
+ Each model is based on the ConvTasNet (Kaituo XU) with multichannel support (Alexandre Defossez).
29
+ * Parameters:
30
+ * B: 256
31
+ * C: 2
32
+ * H: 512
33
+ * L: 20
34
+ * N: 256
35
+ * P: 3
36
+ * R: 3
37
+ * X: 8
38
+ * audio_channels: 2
39
+ * causal: true
40
+ * mask_nonlinear: relu
41
+ * norm_type: cLN
42
+
43
+ ## Dataset
44
+ The model was trained using EnsembleSet and CadenzaWoodwind datasets.
45
+
46
+ ## How to use
47
+
48
+ ```
49
+ from dynamic_source_separator import DynamicSourceSeparator
50
+
51
+ model = DynamicSourceSeparator.from_pretrained(
52
+ "cadenzachallenge/Dynamic_Source_Separator_Causal"
53
+ ).cpu()
54
+
55
+ ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57