Skip to content

Commit

Permalink
upload emissor
Browse files Browse the repository at this point in the history
  • Loading branch information
tae898 committed Aug 26, 2021
1 parent 17cde54 commit cc3a571
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,20 @@ This is optional. The processed datasets can also be annotated in the [EMISSOR a
```
The python script can only use the features extracted.
You can also download them from the below link.
1. [MELD](https://surfdrive.surf.nl/files/index.php/s/fwiMEPEDCnPjfGm/download)
In the current repo root directory, unzip what you downloaded into the directory `./MELD/`
2. [IEMOCAP](https://surfdrive.surf.nl/files/index.php/s/fDfr1yRT8SqATuV/download)
In the current repo root directory, unzip what you downloaded into the directory `./IEMOCAP/`
3. [CarLani](https://surfdrive.surf.nl/files/index.php/s/I5Gg87eVN3l1KEP/download)
In the current repo root directory, unzip what you downloaded into the directory `./CarLani/`
## Contributing
Expand Down
2 changes: 1 addition & 1 deletion annotate-emissor.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def annotate_write_frames(self, starttime_msec, SPLIT, diaid, uttid,
for i, feat in enumerate(ff):
if feat is None:
continue
print(f"TAETAETAE {feat}")
logging.info(f"{feat}")
age = feat['age']['mean']
gender = feat['gender']['m']
gender = 'male' if gender > 0.5 else 'female'
Expand Down

0 comments on commit cc3a571

Please sign in to comment.