Skip to content

Commit

Permalink
Convert ocrs_models.dataset module into a package
Browse files Browse the repository at this point in the history
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
robertknight committed Feb 10, 2024
1 parent 644c419 commit 8ca41d5
Show file tree
Hide file tree
Showing 14 changed files with 1,192 additions and 1,159 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Model checkpoints
*.pt

datasets/
wandb/
__pycache__/

/datasets
/wandb
5 changes: 5 additions & 0 deletions Makefile
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
Loading

0 comments on commit 8ca41d5

Please sign in to comment.