mirror of https://github.com/PyRetri/PyRetri.git
12 lines
175 B
Python
12 lines
175 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from ..utils import Registry
|
||
|
|
||
|
from typing import Dict
|
||
|
|
||
|
|
||
|
ENHANCERS = Registry()
|
||
|
METRICS = Registry()
|
||
|
DIMPROCESSORS = Registry()
|
||
|
RERANKERS = Registry()
|