Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lesionwise metrics for Competitions #866

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ jobs:
if: steps.changed-files-specific.outputs.only_modified == 'false' # Run on any non-docs change
run: |
pytest --cov=. --cov-report=xml --cov-append -k "transunet"
- name: Run Competition Lesionwise unit tests
if: steps.changed-files-specific.outputs.only_modified == 'false' # Run on any non-docs change
run: |
pytest --cov=. --cov-report=xml --cov-append -k "lesionwise"


- name: Upload coverage
Expand Down
16 changes: 16 additions & 0 deletions GANDLF/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@
from .post_training_model_optimization import post_training_model_optimization
from .generate_metrics import generate_metrics_dict
from .data_split_saver import split_data_and_save_csvs
from .generate_Competition_metrics import generate_metrics_dict_competition

__all__ = [
"patch_extraction",
"main_run",
"preprocess_and_save",
"config_generator",
"deploy_targets",
"mlcube_types",
"run_deployment",
"recover_config",
"post_training_model_optimization",
"generate_metrics_dict",
"split_data_and_save_csvs",
"generate_metrics_dict_competition",
]

from datetime import date

Expand Down
Loading
Loading