-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert
ocrs_models.dataset
module into a package
This module was getting large. Convert it into a package with separate modules for individual datasets, the CLI interface and shared utilities.
- Loading branch information
1 parent
644c419
commit 8ca41d5
Showing
14 changed files
with
1,192 additions
and
1,159 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Model checkpoints | ||
*.pt | ||
|
||
datasets/ | ||
wandb/ | ||
__pycache__/ | ||
|
||
/datasets | ||
/wandb |
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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
.PHONY: qa | ||
qa: | ||
poetry run black --check . | ||
poetry run mypy ocrs_models | ||
|
||
.PHONY: format | ||
format: | ||
poetry run black ocrs_models |
Oops, something went wrong.