-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump timm from 0.6.13 to 0.9.2 (#768)
* Create Makefile, simplify checks run * Fix new timm configs API * Add timm table generation step * Update timm table in docs * Update timm version to 0.9.2 * Bump smp version 0.3.3 * Update ubuntu runner
- Loading branch information
Showing
12 changed files
with
323 additions
and
323 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.PHONY: test | ||
|
||
.venv: | ||
python3 -m venv .venv | ||
|
||
install_dev: .venv | ||
.venv/bin/pip install -e .[test] | ||
.venv/bin/pre-commit install | ||
|
||
test: .venv | ||
.venv/bin/pytest -p no:cacheprovider tests/ | ||
|
||
table: | ||
.venv/bin/python misc/generate_table.py | ||
|
||
table_timm: | ||
.venv/bin/python misc/generate_table_timm.py | ||
|
||
black: .venv | ||
.venv/bin/black ./segmentation_models_pytorch --config=pyproject.toml --check | ||
|
||
flake8: .venv | ||
.venv/bin/flake8 ./segmentation_models_pytorch --config=.flake8 | ||
|
||
all: black flake8 test |
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
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
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
Oops, something went wrong.