Spaces:
Running
Running
update change log
Browse files- CHANGELOG.md +3 -0
- audiocraft/__init__.py +1 -1
CHANGELOG.md
CHANGED
@@ -15,6 +15,9 @@ More options when launching Gradio app locally (thanks @ashleykleynhans).
|
|
15 |
|
16 |
Testing out PyTorch 2.0 memory efficient attention.
|
17 |
|
|
|
|
|
|
|
18 |
## [0.0.1] - 2023-06-09
|
19 |
|
20 |
Initial release, with model evaluation only.
|
|
|
15 |
|
16 |
Testing out PyTorch 2.0 memory efficient attention.
|
17 |
|
18 |
+
Added extended generation (infinite length) by slowly moving the windows.
|
19 |
+
Note that other implementations exist: https://github.com/camenduru/MusicGen-colab.
|
20 |
+
|
21 |
## [0.0.1] - 2023-06-09
|
22 |
|
23 |
Initial release, with model evaluation only.
|
audiocraft/__init__.py
CHANGED
@@ -7,4 +7,4 @@
|
|
7 |
# flake8: noqa
|
8 |
from . import data, modules, models
|
9 |
|
10 |
-
__version__ = '0.0.
|
|
|
7 |
# flake8: noqa
|
8 |
from . import data, modules, models
|
9 |
|
10 |
+
__version__ = '0.0.2a2'
|