silverballs's picture
Deploy SatFetch Space App - track binary files with Git LFS
0db1cb9
Raw
History Blame Contribute Delete
437 Bytes
"""
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",
]