Hervé Bredin
commited on
Commit
·
32e47d2
1
Parent(s):
717afa2
feat: initial import
Browse files- README.md +12 -0
- config.yaml +64 -0
- hparams.yaml +2 -0
- pytorch_model.bin +3 -0
- tfevents.bin +3 -0
README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- pyannote
|
| 4 |
+
license: mit
|
| 5 |
+
inference: false
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
## Dummy model used for continuous integration purposes
|
| 9 |
+
|
| 10 |
+
```bash
|
| 11 |
+
$ pyannote-audio-train protocol=Debug.SpeakerDiarization.Debug task=VoiceActivityDetection task.duration=2. model=DebugSegmentation trainer.max_epochs=10
|
| 12 |
+
```
|
config.yaml
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
protocol: Debug.SpeakerDiarization.Debug
|
| 2 |
+
patience: 5
|
| 3 |
+
task:
|
| 4 |
+
_target_: pyannote.audio.tasks.VoiceActivityDetection
|
| 5 |
+
duration: 2.0
|
| 6 |
+
batch_size: 32
|
| 7 |
+
num_workers: null
|
| 8 |
+
pin_memory: false
|
| 9 |
+
model:
|
| 10 |
+
_target_: pyannote.audio.models.segmentation.debug.SimpleSegmentationModel
|
| 11 |
+
optimizer:
|
| 12 |
+
_target_: torch.optim.Adam
|
| 13 |
+
lr: 0.001
|
| 14 |
+
betas:
|
| 15 |
+
- 0.9
|
| 16 |
+
- 0.999
|
| 17 |
+
eps: 1.0e-08
|
| 18 |
+
weight_decay: 0
|
| 19 |
+
amsgrad: false
|
| 20 |
+
trainer:
|
| 21 |
+
_target_: pytorch_lightning.Trainer
|
| 22 |
+
accelerator: null
|
| 23 |
+
accumulate_grad_batches: 1
|
| 24 |
+
amp_backend: native
|
| 25 |
+
amp_level: O2
|
| 26 |
+
auto_lr_find: false
|
| 27 |
+
auto_scale_batch_size: false
|
| 28 |
+
auto_select_gpus: true
|
| 29 |
+
benchmark: false
|
| 30 |
+
check_val_every_n_epoch: 1
|
| 31 |
+
checkpoint_callback: true
|
| 32 |
+
deterministic: false
|
| 33 |
+
fast_dev_run: false
|
| 34 |
+
flush_logs_every_n_steps: 100
|
| 35 |
+
gpus: null
|
| 36 |
+
gradient_clip_val: 0
|
| 37 |
+
limit_test_batches: 1.0
|
| 38 |
+
limit_train_batches: 1.0
|
| 39 |
+
limit_val_batches: 1.0
|
| 40 |
+
log_every_n_steps: 50
|
| 41 |
+
log_gpu_memory: null
|
| 42 |
+
max_epochs: 10
|
| 43 |
+
max_steps: null
|
| 44 |
+
min_epochs: 1
|
| 45 |
+
min_steps: null
|
| 46 |
+
num_nodes: 1
|
| 47 |
+
num_processes: 1
|
| 48 |
+
num_sanity_val_steps: 2
|
| 49 |
+
overfit_batches: 0.0
|
| 50 |
+
precision: 32
|
| 51 |
+
prepare_data_per_node: true
|
| 52 |
+
process_position: 0
|
| 53 |
+
profiler: null
|
| 54 |
+
progress_bar_refresh_rate: 1
|
| 55 |
+
reload_dataloaders_every_epoch: false
|
| 56 |
+
replace_sampler_ddp: true
|
| 57 |
+
sync_batchnorm: false
|
| 58 |
+
terminate_on_nan: false
|
| 59 |
+
tpu_cores: null
|
| 60 |
+
track_grad_norm: -1
|
| 61 |
+
truncated_bptt_steps: null
|
| 62 |
+
val_check_interval: 1.0
|
| 63 |
+
weights_save_path: null
|
| 64 |
+
weights_summary: top
|
hparams.yaml
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
num_channels: 1
|
| 2 |
+
sample_rate: 16000
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7296e6736ee6a4c6806df455e314602d046254b20995e70605bc73f56238cb8a
|
| 3 |
+
size 375501
|
tfevents.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8056698e822043e4d0a9015e3485640b029265c1eae4f6f6085f6c70dfdad820
|
| 3 |
+
size 1370571
|