groadabike commited on
Commit
59721d3
·
verified ·
1 Parent(s): 0da683b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +58 -6
README.md CHANGED
@@ -1,9 +1,61 @@
1
  ---
2
- tags:
3
- - pytorch_model_hub_mixin
4
- - model_hub_mixin
5
  ---
6
 
7
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
- - Library: [More Information Needed]
9
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+