Step 1: Create a new Anaconda/Miniconda environment
conda create -n <choose a name> -f conda.yaml
Step 2: Install packages in an existing environment using pip
pip install -r requirements.txt
python main.py
To start Tensorboard:
tensorboard --logdir runs
The output will be something like:
TensorBoard 2.6.0 at http://localhost:6006/ (Press CTRL+C to quit)
Follow the instructions printed to the terminal to view Tensorboard in a browser.
- Clone the repo (optional)
git clone https://github.com/rakesh-racharla/pytorch-ML-CI-CD-github-actions.git
- Make changes if needed and commit.
- Every push will trigger a new build.
- Check your workflow under "Actions" Tab.