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

FRML-143 Deprecate InceptionV3 #62

Merged
merged 1 commit into from
May 23, 2024
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
209 changes: 0 additions & 209 deletions src/frdc/models/inceptionv3.py

This file was deleted.

4 changes: 2 additions & 2 deletions tests/integration_tests/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import numpy as np
from sklearn.preprocessing import StandardScaler, OrdinalEncoder

from frdc.models.inceptionv3 import InceptionV3MixMatchModule
from frdc.models.efficientnetb1 import EfficientNetB1MixMatchModule
from frdc.train.frdc_datamodule import FRDCDataModule

BATCH_SIZE = 3
Expand All @@ -31,7 +31,7 @@ def test_manual_segmentation_pipeline(ds):
ss = StandardScaler()
ss.fit(ds.ar.reshape(-1, ds.ar.shape[-1]))

m = InceptionV3MixMatchModule(
m = EfficientNetB1MixMatchModule(
in_channels=ds.ar.shape[-1],
n_classes=n_classes,
lr=1e-3,
Expand Down
2 changes: 1 addition & 1 deletion tests/model_tests/chestnut_dec_may/train.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for the InceptionV3 model on the Chestnut Nature Park dataset.
""" Tests for the model on the Chestnut Nature Park dataset.

This test is done by training a model on the 20201218 dataset, then testing on
the 20210510 dataset.
Expand Down
68 changes: 0 additions & 68 deletions tests/unit_tests/models/test_inceptionv3.py

This file was deleted.

Loading