From 455de787ac5cd4fddae7a5e37a57546d32f517ec Mon Sep 17 00:00:00 2001 From: Femke Gelderblom Date: Thu, 5 Oct 2023 11:11:20 +0200 Subject: [PATCH] FIX: fixed drive mapping in train_model.sh --- train_model.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/train_model.sh b/train_model.sh index f973634..1e37d51 100755 --- a/train_model.sh +++ b/train_model.sh @@ -1,9 +1,10 @@ #!/bin/bash BASE_FOLDER=$1 -CONFIG_PATH="./CONFIG.yaml" +CONFIG_PATH="/app/CONFIG.yaml" docker run -v $BASE_FOLDER:/data \ + -v $PWD:/app \ --gpus all \ - dcase \ - poetry run prototypicalbeats/trainer.py fit --config $CONFIG_PATH \ No newline at end of file + beats \ + poetry run prototypicalbeats/trainer.py fit --config $CONFIG_PATH \ No newline at end of file