""" 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", ]