Update config.gin to keep required params only with explicit names
Browse files- config.gin +3 -3
config.gin
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
# Parameters for build_module:
|
| 3 |
# ==============================================================================
|
| 4 |
omar_rq.utils.build_module.ckpt_path = 'model.ckpt'
|
| 5 |
-
omar_rq.utils.build_module.module = @modules.maskingmodel.MaskingModel
|
| 6 |
-
omar_rq.utils.build_module.net = @nets.conformer.Conformer
|
| 7 |
-
omar_rq.utils.build_module.representation = @nets.melspectrogram.MelSpectrogram
|
| 8 |
|
| 9 |
# Parameters for omar_rq.nets.conformer.Conformer:
|
| 10 |
# ==============================================================================
|
|
|
|
| 2 |
# Parameters for build_module:
|
| 3 |
# ==============================================================================
|
| 4 |
omar_rq.utils.build_module.ckpt_path = 'model.ckpt'
|
| 5 |
+
omar_rq.utils.build_module.module = @omar_rq.modules.maskingmodel.MaskingModel
|
| 6 |
+
omar_rq.utils.build_module.net = @omar_rq.nets.conformer.Conformer
|
| 7 |
+
omar_rq.utils.build_module.representation = @omar_rq.nets.melspectrogram.MelSpectrogram
|
| 8 |
|
| 9 |
# Parameters for omar_rq.nets.conformer.Conformer:
|
| 10 |
# ==============================================================================
|