Skip to content

Latest commit

 

History

History
18 lines (18 loc) · 572 Bytes

File metadata and controls

18 lines (18 loc) · 572 Bytes

Run docker container

docker run -d \
  --name bert_pretraining \
  --restart always \
  -v /home/andrijapoleksic/BERT_PRETRAINING/bert_pretraining/PRETRAINING:/bert_pretraining/PRETRAINING \
  -v /srv/andrijapoleksic/DATASET/BATCHED:/bert_pretraining/PRETRAINING/DATASET/BATCHED \
  -v /srv/andrijapoleksic/MODEL:/bert_pretraining/PRETRAINING/MODELS \
  --memory=64g \
  --cpus="16" \
  --gpus "count=1,capabilities=compute" \
  bert_pretraining:1.1 \
  tail -f /dev/null

Attach a terminal to it

docker exec -it bert_pretraining /bin/bash