-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #464 from facebookresearch/sync_03_06_2024_071201CEST
Release 1.4.0a1
- Loading branch information
Showing
39 changed files
with
3,462 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ python -m pip install setuptools wheel | |
python -m pip install -U audiocraft # stable release | ||
python -m pip install -U git+https://[email protected]/facebookresearch/audiocraft#egg=audiocraft # bleeding edge | ||
python -m pip install -e . # or if you cloned the repo locally (mandatory if you want to train). | ||
python -m pip install -e '.[wm]' # if you want to train a watermarking model | ||
``` | ||
|
||
We also recommend having `ffmpeg` installed, either through your system or Anaconda: | ||
|
@@ -37,6 +38,7 @@ At the moment, AudioCraft contains the training code and inference code for: | |
* [EnCodec](./docs/ENCODEC.md): A state-of-the-art high fidelity neural audio codec. | ||
* [Multi Band Diffusion](./docs/MBD.md): An EnCodec compatible decoder using diffusion. | ||
* [MAGNeT](./docs/MAGNET.md): A state-of-the-art non-autoregressive model for text-to-music and text-to-sound. | ||
* [AudioSeal](./docs/WATERMARKING.md): A state-of-the-art audio watermarking. | ||
|
||
## Training code | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,4 @@ | |
# flake8: noqa | ||
from . import data, modules, models | ||
|
||
__version__ = '1.3.0' | ||
__version__ = '1.4.0a1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.