Spaces:
Sleeping
Sleeping
File size: 437 Bytes
f343f06 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | """
Feature extraction module for satellite imagery.
Provides:
- FeatureExtractor: Extract embeddings using DOFA-CLIP
- Embedding cache utilities
"""
from .extractor import FeatureExtractor
from .embeddings import (
save_embeddings,
load_embeddings,
get_cache_path,
verify_embeddings,
)
__all__ = [
"FeatureExtractor",
"save_embeddings",
"load_embeddings",
"get_cache_path",
"verify_embeddings",
]
|