Skip to content

Commit

Permalink
Remove glcm padded from autoloading
Browse files Browse the repository at this point in the history
  • Loading branch information
Eve-ning committed Oct 16, 2023
1 parent b6ef2df commit e01fb89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/frdc/preprocess/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from .extract_segments import (extract_segments_from_labels,
extract_segments_from_bounds,
remove_small_segments_from_labels)
from .glcm_padded import glcm_padded
# from .glcm_padded import glcm_padded
from .preprocess import (scale_0_1_per_band, threshold_binary_mask,
binary_watershed, scale_static_per_band, )

__all__ = ['extract_segments_from_labels', 'extract_segments_from_bounds',
'remove_small_segments_from_labels', 'scale_0_1_per_band',
'threshold_binary_mask', 'binary_watershed',
'scale_static_per_band', 'glcm_padded']
'scale_static_per_band']
3 changes: 2 additions & 1 deletion tests/model_tests/test_facenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
from frdc.load import FRDCDataset
from frdc.models import FaceNet
from frdc.preprocess import (
extract_segments_from_bounds, scale_static_per_band, glcm_padded
extract_segments_from_bounds, scale_static_per_band
)
# from frdc.preprocess.glcm_padded import glcm_padded
from frdc.train import FRDCDataModule, FRDCModule


Expand Down

0 comments on commit e01fb89

Please sign in to comment.