Note: Search for the keyword "project" when adapting this template. Also remember to update the badge URLs above.
(2-3 sentences introducing project)
- Spin up a Colab notebook.
- Install colabcode.
- Start the code server.
from colabcode import ColabCode
ColabCode(port=10000, mount_drive=True)
- Go to the ngrok link provided.
- Clone the repo.
git clone https://github.com/jeremyjordan/project.git
- Run
make colab
to set up the project on your Colab instance (or runmake init
if running locally).
(Describe how to train a model for the project)
In order to commit code from a Colab machine, you'll need to do the following:
- Make sure you have an Github auth token (https://github.com/settings/tokens)
- Configure the
git
settings on the machine
git config --global user.name "Jeremy Jordan"
git config --global user.email ""
gh auth login --with-token <<< INSERT_TOKEN_HERE
Note: make sure you've ran
make colab
before setting this up.