This repository contains the code to replicate the End-to-End Deep Sequence Modelling baseline for the Breathing Challenge of the Interspeech 2020 Computational Paralinguistics Challenge (ComParE). [whitepaper]
This code was tested with Python 3.5.
Execute:
pip install -r requirements.txt
preferably on a separate virtualenv.
-
Edit
end2end/configuration.py
- specifically the CHALLENGE_FOLDER needs to correspond to the path in your disk the challenge folder exists. -
Execute
end2end/data_generator.py
- this will process the data and extract tf_records, to be used in the experiment by tensorflow. -
(Optional) Edit
end2end/experiment/experiment_setup.py
- this file defines a Python dictionary with configuration values for the experiment. -
Execute
end2end/run_experiment.py
- this will perform one trial of the End2End method for the Breathing Challenge, as described in the whitepaper. -
Adapt
end2end/run_experiment.py
andend2end/experiment/core.py
- make your own adaptation of this method and outperform this baseline!