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

FIX: use inceptionv4 from timm #69

Merged
merged 4 commits into from
Jan 15, 2023
Merged
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
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ ignore_missing_imports = True
ignore_missing_imports = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-timm]
[mypy-timm.*]
ignore_missing_imports = True
[mypy-scipy.stats]
ignore_missing_imports = True
Expand Down
6 changes: 3 additions & 3 deletions tests/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ def test_cli_run_args(tmp_path: Path):
350,
144,
),
# Inceptionv4 TCGA-BRCA-v1
# Inception_v4 TCGA-BRCA-v1
(
"inceptionv4",
"inception_v4",
"TCGA-BRCA-v1",
["notumor", "tumor"],
[0.9564113020896912, 0.043588679283857346],
Expand All @@ -227,7 +227,7 @@ def test_cli_run_args(tmp_path: Path):
),
# Inceptionv4nobn TCGA-TILs-v1
(
"inceptionv4nobn",
"inception_v4nobn",
"TCGA-TILs-v1",
["notils", "tils"],
[1.0, 3.427359524660334e-12],
Expand Down
306 changes: 0 additions & 306 deletions wsinfer/_modellib/inceptionv4.py

This file was deleted.

Loading