mirror of
https://github.com/SikongJueluo/Mini-Nav.git
synced 2026-03-12 12:25:32 +08:00
15 lines
321 B
Python
15 lines
321 B
Python
from .common import get_device, get_output_diretory
|
|
from .feature_extractor import (
|
|
extract_batch_features,
|
|
extract_single_image_feature,
|
|
infer_vector_dim,
|
|
)
|
|
|
|
__all__ = [
|
|
"get_device",
|
|
"get_output_diretory",
|
|
"infer_vector_dim",
|
|
"extract_single_image_feature",
|
|
"extract_batch_features",
|
|
]
|