File size: 567 Bytes
c34decd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#!/bin/bash
#SBATCH --job-name=stanza
#SBATCH --output=log
#SBATCH --ntasks=1
#SBATCH --time=72:00:00
# SBATCH --mem=64000
#SBATCH --partition=gpu-single
#SBATCH --cpus-per-task=4
#SBATCH --qos=batch
#SBATCH --gres=gpu
pdm run python -m stanza.models.parser \
--train_file ../la_giuseppe/train_fixed.conllu \
--eval_file ../la_giuseppe/dev_fixed.conllu \
--output_file ../la_giuseppe/test_fixed.conllu \
--bert_model bowphs/LaBerta \
--no_pretrain \
--bert_finetune \
--bert_hidden_layers 12 \
--lang la \
--shorthand la_giuseppe \
--mode train
|