Skip to content
Snippets Groups Projects
Commit 17c9effa authored by friebolin's avatar friebolin
Browse files
parents 4caed60d 93152a6d
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#
#SBATCH --job-name=JOBNAME
#SBATCH --output=output_file.txt
#SBATCH --mail-user=mail@cl.uni-heidelberg.de
#SBATCH --mail-type=ALL
#SBATCH --partition=PARTITION
#SBATCH --mem 9G
#SBATCH --gres=gpu:1
#SBATCH --ntasks=1
#JOB STEPS
#srun hostname
# source desired venv here:
source venv/bin/activate
cd /path/to/code/repository/swp-data-augmentation-for-metonymy-resolution/Code
python main.py --architecture MODEL_TO_TRAIN --model_type CLASSIFICATION_MODEL -t PATH/TO/TRAIN_SET.txt -v PATH/TO/TEST_SET.txt --tokenizer TOKENIZER -max MAXIMUM_SEQUENZE_LENGHT -rs RANDOM_SEED -lr LEARNING_RATE -e EPOCHS --train_loop TRAINER -b TRAIN_BATCH_SIZE -tb TEST_BATCH_SIZE -sd PATH/TO/RESULT/file.txt
#for methods MixUp and TMix add arguments as shown in main.py
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment