Skip to content

Commit

Permalink
Merge pull request espnet#5771 from popcornell/c8_val_fix_norm
Browse files Browse the repository at this point in the history
Updated results for CHiME-8 DASR baseline with new notsofar1 dev set
  • Loading branch information
sw005320 authored May 3, 2024
2 parents 543f488 + dd14397 commit 5b5ae5a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
13 changes: 8 additions & 5 deletions egs2/chime8_task1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,24 @@ significantly complicates speaker counting.


```bash
###############################################################################
### tcpWER for all Scenario ###################################################
###############################################################################
+-----+--------------+--------------+----------+----------+--------------+-------------+-----------------+------------------+------------------+------------------+
| | session_id | error_rate | errors | length | insertions | deletions | substitutions | missed_speaker | falarm_speaker | scored_speaker |
|-----+--------------+--------------+----------+----------+--------------+-------------+-----------------+------------------+------------------+------------------|
| dev | chime6 | 0.825381 | 52070 | 63086 | 12747 | 29466 | 9857 | 0 | 5 | 8 |
| dev | mixer6 | 0.287729 | 26621 | 92521 | 4882 | 8809 | 12930 | 0 | 24 | 70 |
| dev | dipco | 0.674161 | 11574 | 17168 | 3066 | 5563 | 2945 | 0 | 2 | 8 |
| dev | notsofar1 | 0.508768 | 90660 | 178195 | 14872 | 55195 | 20593 | 105 | 7 | 592 |
| dev | chime6 | 0.887079 | 54417 | 61344 | 14542 | 29683 | 10192 | 0 | 4 | 8 |
| dev | mixer6 | 0.292346 | 26317 | 90020 | 4656 | 9079 | 12582 | 0 | 23 | 70 |
| dev | dipco | 0.984403 | 16157 | 16413 | 5008 | 8507 | 2642 | 3 | 0 | 8 |
| dev | notsofar1 | 0.462402 | 70035 | 151459 | 13116 | 37324 | 19595 | 120 | 5 | 612 |
+-----+--------------+--------------+----------+----------+--------------+-------------+-----------------+------------------+------------------+------------------+
###############################################################################
### Macro-Averaged tcpWER for across all Scenario (Ranking Metric) ############
###############################################################################
+-----+--------------+
| | error_rate |
|-----+--------------|
| dev | 0.57401 |
| dev | 0.656558 |
+-----+--------------+
```

Expand Down
3 changes: 1 addition & 2 deletions egs2/chime8_task1/asr1/local/gss2lhotse.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ def get_new_manifests(input_dir, output_filename):
id2wav = {Path(w).stem: w for w in wavs}
recordings = []
supervisions = []
for c_k in segcuts.data.keys():
c_cut = segcuts.data[c_k]
for c_cut in segcuts.data:

speaker = c_cut.supervisions[0].speaker
gss_id = (
Expand Down

0 comments on commit 5b5ae5a

Please sign in to comment.