Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
patel-zeel committed Oct 27, 2023
1 parent 1a0bc77 commit 8dc3105
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.10, 3.11]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ print(result.keys()) # dict_keys(['epoch_losses', 'iter_losses'])
## Adhoc
### Count number of parameters in a model
```python
from susml.torch.utils import count_parameters
from susml.torch.utils import count_params
n_params = count_params(mlp)
```

0 comments on commit 8dc3105

Please sign in to comment.