geoai-py 0.14.0__py2.py3-none-any.whl → 0.15.0__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
geoai/__init__.py CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  __author__ = """Qiusheng Wu"""
4
4
  __email__ = "giswqs@gmail.com"
5
- __version__ = "0.14.0"
5
+ __version__ = "0.15.0"
6
6
 
7
7
 
8
8
  import os
@@ -101,3 +101,23 @@ def set_proj_lib_path(verbose=False):
101
101
 
102
102
  from .dinov3 import DINOv3GeoProcessor, analyze_image_patches, create_similarity_map
103
103
  from .geoai import *
104
+
105
+ from .timm_train import (
106
+ get_timm_model,
107
+ modify_first_conv_for_channels,
108
+ TimmClassifier,
109
+ RemoteSensingDataset,
110
+ train_timm_classifier,
111
+ predict_with_timm,
112
+ list_timm_models,
113
+ )
114
+
115
+ from .timm_segment import (
116
+ TimmSegmentationModel,
117
+ SegmentationDataset,
118
+ train_timm_segmentation,
119
+ predict_segmentation,
120
+ train_timm_segmentation_model,
121
+ timm_semantic_segmentation,
122
+ push_timm_model_to_hub,
123
+ )