Spaces:
Running on Zero
Running on Zero
File size: 370 Bytes
cbc0e90 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Copyright (c) Kyutai, all rights reserved.
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
"""
Models for the compression model Moshi,
"""
# flake8: noqa
from .compression import (
CompressionModel,
MimiModel,
)
from .lm import LMModel, LMGen
from .loaders import get_mimi, get_moshi_lm
|