In this problem, one is given an audio file containing the sound made while bolting steel material on a construction site. The code should read the audio file and predict the torque value of it.
The following system requirements should be satisfied:
- OS: Ubuntu 16.04
- Python: 3.6
- CUDA: 10.1
- cudnn: 7
- Docker
- Build a docker image:
docker build -t topcoder . - Start a docker container:
docker run --rm --gpus all --shm-size 16G \
-v /path/to/train/audios:/data/input/train \
-v /path/to/train/labels:/data/gt/train \
-v /path/to/save/models:/tmp \
-v /path/to/test/audios:/data/input/pred \
-v /path/to/test/predictions:/data/output/pred \
-it topcoder
- Use
/code/train.shto train the model - Use
/code/test.shto make the inference