From 8e6626586a7d3f8a26e0728e1590623a2c2b90d5 Mon Sep 17 00:00:00 2001 From: FBurkhardt Date: Tue, 19 Mar 2024 14:13:10 +0100 Subject: [PATCH] update --- 1.3.0/create.py | 9 +++++++-- CHANGELOG.md | 8 ++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/1.3.0/create.py b/1.3.0/create.py index 63313ce..41fa80d 100644 --- a/1.3.0/create.py +++ b/1.3.0/create.py @@ -1,11 +1,15 @@ -import os +""" +Add age.[train|dev|test] tables with speaker information +consists of randomly selected 20 emotionally neutral samples per speaker +all tables being age/gender balanced +""" + import random import pandas as pd import audb import audeer import audformat -import audiofile import util import trainDevTestSplit @@ -78,6 +82,7 @@ def main(): db.save(build_dir) + print(db) if __name__ == "__main__": main() diff --git a/CHANGELOG.md b/CHANGELOG.md index d35504b..8301806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Changelog ========= +Version 1.3.0 (2024/03/19) +-------------------------- + +* Added: age.[train|dev|test] tables with speaker information +* consists of randomly selected 20 emotionally neutral samples per speaker +* all tables being age/gender balanced + + Version 1.2.0 (2023/04/06) --------------------------