This repository started to keep track of the NM Sliding Window Pipeline for training the main BERT model.
Note that currently you can't close the ssh connection before the script finishes.
- Connect using SSH:
ssh [user]@[public-ip] -p [ssh-port]
- Build the image:
sudo docker build -t nextgpt . --force-rm --no-cache
- Run the container in interactive/detached mode:
sudo docker run -it -d --name="gabrieldamata" --cpus="8.0" --memory="64g" nextgpt
- Enter exec mode using the container ID
docker ps --filter ancestor=nextgpt
docker exec -it [container-id] /bin/bash