Spaces:
Sleeping
Sleeping
unpairedelectron07
commited on
Commit
•
699b46d
1
Parent(s):
8d183a7
Create solvers/__init__.py
Browse files
audiocraft/solvers/__init__.py
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2 |
+
# All rights reserved.
|
3 |
+
#
|
4 |
+
# This source code is licensed under the license found in the
|
5 |
+
# LICENSE file in the root directory of this source tree.
|
6 |
+
"""
|
7 |
+
Solvers. A Solver is a training recipe, combining the dataloaders, models,
|
8 |
+
optimizer, losses etc into a single convenient object.
|
9 |
+
"""
|
10 |
+
|
11 |
+
# flake8: noqa
|
12 |
+
from .audiogen import AudioGenSolver
|
13 |
+
from .builders import get_solver
|
14 |
+
from .base import StandardSolver
|
15 |
+
from .compression import CompressionSolver
|
16 |
+
from .musicgen import MusicGenSolver
|
17 |
+
from .diffusion import DiffusionSolver
|