PyRetri/retrieval_tool_box/index/metric/__init__.py

13 lines
172 B
Python
Raw Normal View History

2020-04-02 14:00:49 +08:00
# -*- coding: utf-8 -*-
from yacs.config import CfgNode
from .metric_impl.knn import KNN
from .metric_base import MetricBase
__all__ = [
'MetricBase',
'KNN',
]