From cc3a571b8970880a899c7fe22c7c724ac69245b4 Mon Sep 17 00:00:00 2001 From: Taewoon Kim Date: Thu, 26 Aug 2021 15:42:32 +0200 Subject: [PATCH] upload emissor --- README.md | 14 ++++++++++++++ annotate-emissor.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index df7bc173..9f629830 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/annotate-emissor.py b/annotate-emissor.py index 99b36fcf..e6294d0f 100644 --- a/annotate-emissor.py +++ b/annotate-emissor.py @@ -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'