AI-RVC / infer /__init__.py
mason369's picture
Upload folder using huggingface_hub
b15e31b verified
# -*- coding: utf-8 -*-
"""
推理模块
"""
from .f0_extractor import (
F0Extractor,
get_f0_extractor,
shift_f0,
F0Method
)
__all__ = [
"F0Extractor",
"get_f0_extractor",
"shift_f0",
"F0Method"
]