Skip to content

chore: update ChaosGrad default lr to 1e-4 across implementation, doc… #31

chore: update ChaosGrad default lr to 1e-4 across implementation, doc…

chore: update ChaosGrad default lr to 1e-4 across implementation, doc… #31

Workflow file for this run

name: CI
on:
push:
paths:
- 'odyssnet/**'
- 'tests/**'
- 'pyproject.toml'
- 'requirements.txt'
- '.github/workflows/ci.yml'
pull_request:
paths:
- 'odyssnet/**'
- 'tests/**'
- 'pyproject.toml'
- 'requirements.txt'
- '.github/workflows/ci.yml'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e ".[dev]"
- run: python -m pytest tests/ -v