geoai-py 0.13.2__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 +21 -1
- geoai/timm_segment.py +1097 -0
- geoai/timm_train.py +658 -0
- geoai/train.py +224 -77
- geoai/utils.py +893 -103
- {geoai_py-0.13.2.dist-info → geoai_py-0.15.0.dist-info}/METADATA +16 -5
- {geoai_py-0.13.2.dist-info → geoai_py-0.15.0.dist-info}/RECORD +11 -9
- {geoai_py-0.13.2.dist-info → geoai_py-0.15.0.dist-info}/licenses/LICENSE +1 -2
- {geoai_py-0.13.2.dist-info → geoai_py-0.15.0.dist-info}/WHEEL +0 -0
- {geoai_py-0.13.2.dist-info → geoai_py-0.15.0.dist-info}/entry_points.txt +0 -0
- {geoai_py-0.13.2.dist-info → geoai_py-0.15.0.dist-info}/top_level.txt +0 -0
geoai/__init__.py
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
__author__ = """Qiusheng Wu"""
|
4
4
|
__email__ = "giswqs@gmail.com"
|
5
|
-
__version__ = "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
|
+
)
|