Spaces:
Running
Running
File size: 270 Bytes
adecc9b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!bin/bash
export CUDA_VISIBLE_DEVICES=$4
TASK=$1
MODEL=$2
DATASET=$3
python open_biomed/scripts/train.py \
--task $TASK \
--additional_config_file configs/model/$MODEL.yaml \
--dataset_name $DATASET \
--dataset_path ./datasets/$TASK/$DATASET \
--empty_folder \
--debug |