Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EDdA Classification
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Projet GEODE
EDdA Classification
Commits
30108549
Commit
30108549
authored
2 years ago
by
Ludovic Moncla
Browse files
Options
Downloads
Patches
Plain Diff
Delete run_train_bert.slurm
parent
a3a8f59c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
run_train_bert.slurm
+0
-26
0 additions, 26 deletions
run_train_bert.slurm
with
0 additions
and
26 deletions
run_train_bert.slurm
deleted
100644 → 0
+
0
−
26
View file @
a3a8f59c
#!/bin/bash
#SBATCH --job-name="train_bert" # nom du job
#SBATCH --ntasks=1 # nombre de taches a reserver (=nombre de GPU ici)
#SBATCH --gres=gpu:1 # nombre de GPU a reserver
#SBATCH --cpus-per-task=10 # nombre de coeurs CPU par tache (un quart du noeud ici)
##SBATCH --qos=qos_gpu-t4
#SBATCH -C v100-32g
#SBATCH --hint=nomultithread # hyperthreading desactive
#SBATCH --time=20:00:00 # temps maximum d'execution demande (HH:MM:SS)
#SBATCH --output=train_bert%j.out # nom du fichier de sortie
#SBATCH --error=train_bert%j.out # nom du fichier d'erreur (ici commun avec la sortie)
# nettoyage des modules charges en interactif et herites par defaut
module purge
# chargement des modules
module load pytorch-gpu/py3/1.7.1
# echo des commandes lancees
set
-x
# execution du code
python training_bertFineTuning.py /gpfswork/rech/mqs/ugy94pd/EDdA-Classification/data/train_dataframe.tsv /gpfswork/rech/mqs/ugy94pd/EDdA-Classification/bert_settings.conf /gpfswork/rech/mqs/ugy94pd/EDdA-Classification/models/bert/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment