Git Product home page Git Product logo

crema-d's Introduction

crema-d

This project holds code to convert the crema-d corpus to audformat and publish it with audb to a public Artifactory repository on https://audeering.jfrog.io.

The databases is published under ODbL 1.0 and can be downloaded with the Python library audb:

import audb

db = audb.load('crema-d')

crema-d's People

Contributors

audeerington avatar felixbur avatar hagenw avatar

Watchers

 avatar  avatar

crema-d's Issues

Reduce number of tables by finding a way to reference selected train, dev, test splits

@felixbur pointed out that crema-d has a lot of tables as we encode train, dev, test splits in the name of the table. This has certain adavantages as you just need to load the table and you are done, but it also has the disadvantage that it makes it more crowded when look at which tables are available and requires more disk space and time for loading the tables.

The issue also applies to other datasets.

One solution might be that we store the splits in different tables, e.g. emotion.train that only contain an index (only unofficially supported by audformat at the moment) or contain another label lile speaker ID, even though the label has not really any meaning for this table. The actual emotion labels would be stored in a combined table, e.g. emotion.categories.desired instead of emotion.categories.desired.train, emotion.categories.desired.dev, and emotion.categories.desired.test. If the dev split should be requested you need to do something like this:

df = db["emotion.categories.desired"].get(index=db["emotion.dev"].index)

I think we had this discussion a few years ago already, but I cannot remember what the conclusion was ;)

A more elegant solution seems to me to extend audformat to have the category of split-tables, or maybe better change how audformat.Split is implemented and store the underlying index as part of the split. A user would then be able to do:

df = db["emotion.categories.desired"].get(split="emotion.dev")

The problem is of cause that we should not change the behavior of audformat.Split() in a not backward compatible way.

@ureichel @audeerington @schruefer any opinion on this?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.