mirror of
https://github.com/modelscope/modelscope.git
synced 2025-12-25 20:49:37 +01:00
18 lines
514 B
Python
18 lines
514 B
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
|
|
# from .audio.tts.am import SambertNetHifi16k
|
|
# from .audio.tts.vocoder import Hifigan16k
|
|
from .base import Model
|
|
from .builder import MODELS, build_model
|
|
# from .multi_model import OfaForImageCaptioning
|
|
from .nlp import (
|
|
BertForSequenceClassification,
|
|
SbertForNLI,
|
|
SbertForSentenceSimilarity,
|
|
SbertForSentimentClassification,
|
|
SbertForZeroShotClassification,
|
|
StructBertForMaskedLM,
|
|
VecoForMaskedLM,
|
|
SbertForTokenClassification,
|
|
)
|