Spaces:
Sleeping
Sleeping
File size: 655 Bytes
5325fcc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
from . import builders, musicgen
class AudioGenSolver(musicgen.MusicGenSolver):
"""Solver for AudioGen re-implementation training task.
Note that this implementation does not strictly follows
the method proposed in https://arxiv.org/abs/2209.15352
but is derived from MusicGen's training pipeline.
More information can be found in the AudioGen model card.
"""
DATASET_TYPE: builders.DatasetType = builders.DatasetType.SOUND
|