missed scipy #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Running Monobeast | |
on: | |
push: | |
jobs: | |
run-monobeast: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
# cache: 'pip' # caching pip dependencies | |
- name: Install the packages | |
uses: BSFishy/pip-action@v1 | |
with: | |
packages: wandb scipy PyYAML gym hydra-core flask ipython jsonschema requests numpy omegaconf torch tqdm | |
- name: Log-in to W&B | |
shell: bash | |
env: | |
WANDB_API: ${{ secrets.WANDB_KEY }} | |
run: wandb login "$WANDB_API" | |
- name: Running monobeast | |
run: python run_monobeast.py |