Now YuE can extend any uploaded mp3, with voice cloning and music contunuation.
It uses:
Seconds to take from mp3
conda create -n yue python=3.9
conda activate yue
# torch, exllama и flash_attn-2
pip install torch==2.4.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
pip install https://github.com/turboderp-org/exllamav2/releases/download/v0.2.7/exllamav2-0.2.7+cu121.torch2.4.0-cp39-cp39-win_amd64.whl
pip install https://github.com/bdashore3/flash-attention/releases/download/v2.7.1.post1/flash_attn-2.7.1.post1+cu124torch2.4.0cxx11abiFALSE-cp39-cp39-win_amd64.whl
git lfs install
git clone https://github.com/Mozer/YuE-extend
cd YuE-extend
pip install -r requirements.txt
git clone https://huggingface.co/m-a-p/xcodec_mini_infer
# download 3 exl2 модели (5.7 + 5.7 + 1.8 GB) into workspace\models:
huggingface-cli download Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-8.0bpw --local-dir workspace\models\YuE-s1-7B-anneal-en-cot-exl2-8.0bpw
huggingface-cli download Ftfyhh/YuE-s1-7B-anneal-en-icl-8.0bpw-exl2 --local-dir YuE-s1-7B-anneal-en-icl-8.0bpw-exl2
huggingface-cli download Alissonerdx/YuE-s2-1B-general-exl2-8.0bpw --local-dir workspace\models\YuE-s2-1B-general-exl2-8.0bpw
Run (double click) start-gui.bat open (ctrl click) http://127.0.0.1:7860/
There are 3 ways: COT model; ICL model + 2 additional tracks; ICL model + 1 additional common track. The first one is the simplest and most proven. In the web UI:
Additional checkboxes "Use Dual Tracks Audio Prompt?" and "Use Audio Prompt? (both vocal and instrumental)" will give the model the full music of the entire song. But this makes it much more difficult to control the generation. The model will try to generate what it has already heard from mp3, and it will repeat the source one by one. In these modes, try setting the "Audio prompt End Time" to 1-3 seconds more than in the "Seconds to take from mp3" field. Experiment with different segments to find a balance of similarity and novelty of generation.
| Stage | Original | ExLlamaV2 | Speedup |
|---|---|---|---|
| Stage 1 | 282s | 125s | 2.25x |
| Stage 2 | 666s | 49s | 13.6x |
| Total | 948s | 174s | 5.45x |
Configuration: BF16 models, Flash Attention 2 enabled, CFG enabled, batch size 4, 64k cache.
| Stage | ExLlamaV2 |
|---|---|
| Stage 1 | 317s |
| Stage 2 | 350s |
| Total | 667s |
Configuration: Quantized models with Q4/Q8 cache, Flash Attention 2 enabled.
Ensure you have Docker installed on your system. Follow the official Docker installation guides for your platform:
This interface requires NVIDIA GPUs for acceleration. Ensure you have the necessary hardware and drivers set up.
Linux:
Windows/macOS:
To simplify the setup and management of the YuE-Exllamav2-UI, you can use Docker Compose. Docker Compose allows you to define and run multi-container Docker applications with a single configuration file (docker-compose.yml). Below are the steps to get started.
Note: This docker-compose.yml file already exists in the root of the repository, you just need to download or copy the file and replace the directory mapping and run the command in the same directory as the file, see the explanation below.
Create a docker-compose.yml file:
version: '3.8'
services:
yue-exllamav2:
image: alissonpereiraanjos/yue-exllamav2-interface:latest
container_name: yue-exllamav2
restart: unless-stopped
ports:
- "7860:7860"
environment:
- DOWNLOAD_MODELS=all_bf16
volumes:
- /path/to/models:/workspace/models
- /path/to/outputs:/workspace/outputs
deploy:
resources:
reservations:
devices:
- capabilities: [gpu]
Run the container:
docker-compose up -d
Access the Interface: Once the container is running, access the Gradio UI at http://localhost:7860.
image: Specifies the Docker image to use (alissonpereiraanjos/yue-exllamav2-interface:latest).container_name: Sets a name for the container (yue-interface).restart: unless-stopped: Ensures the container restarts automatically unless manually stopped.ports: Maps container ports to the host:
7860:7860: Port for accessing the Gradio UI.8888:8888: Optional additional port (JupyterLab).environment: Defines environment variables:
DOWNLOAD_MODELS=all: Downloads all available models. Replace all with specific model keys (e.g., YuE-s2-1B-general,YuE-s1-7B-anneal-en-cot) to download only selected models.volumes: Maps host directories to the container:
/path/to/models:/workspace/models: Directory where models will be stored./path/to/outputs:/workspace/outputs: Directory where generated outputs will be saved./path/to/models and /path/to/outputs with the actual paths on your system.deploy.resources.reservations.devices: Enables GPU support in the container (requires NVIDIA GPU and drivers).Specific models: To download only specific models, modify the DOWNLOAD_MODELS environment variable in the docker-compose.yml file. For example:
environment:
- DOWNLOAD_MODELS=YuE-s2-1B-general,YuE-s1-7B-anneal-en-cot,YuE-s1-7B-anneal-en-icl,YuE-upsampler
Different ports: If you need to use different ports, adjust the port mappings under the ports section.
To run without Docker Compose:
docker run --gpus all -d \
-p 7860:7860 \
-e DOWNLOAD_MODELS=all_bf16 \
-v /path/to/models:/workspace/models \
-v /path/to/outputs:/workspace/outputs \
alissonpereiraanjos/yue-exllamav2-interface:latest
--gpus all: Enables NVIDIA GPU support.-d: Runs the container in detached mode (background).-p 7860:7860: Exposes port 7860 for accessing the Gradio UI at http://localhost:7860.-p 8888:8888: Exposes port 8888 for additional services if applicable.-e DOWNLOAD_MODELS=all_bf16: Downloads all bf16 available models upon initialization.all_bf16 to download all available models (BF16).DOWNLOAD_MODELS=YuE-s2-1B-general,YuE-s1-7B-anneal-en-cot).| Model Key | Model HF Repository | Container Path | Quantization |
|---|---|---|---|
xcodec_mini_infer | m-a-p/xcodec_mini_infer | /workspace/YuE-Interface/inference/xcodec_mini_infer | N/A |
YuE-s1-7B-anneal-en-cot | m-a-p/YuE-s1-7B-anneal-en-cot | /workspace/models/YuE-s1-7B-anneal-en-cot | BF16 |
YuE-s1-7B-anneal-en-icl | m-a-p/YuE-s1-7B-anneal-en-icl | /workspace/models/YuE-s1-7B-anneal-en-icl | BF16 |
YuE-s1-7B-anneal-jp-kr-cot | m-a-p/YuE-s1-7B-anneal-jp-kr-cot | /workspace/models/YuE-s1-7B-anneal-jp-kr-cot | BF16 |
YuE-s1-7B-anneal-jp-kr-icl | m-a-p/YuE-s1-7B-anneal-jp-kr-icl | /workspace/models/YuE-s1-7B-anneal-jp-kr-icl | BF16 |
YuE-s1-7B-anneal-zh-cot | m-a-p/YuE-s1-7B-anneal-zh-cot | /workspace/models/YuE-s1-7B-anneal-zh-cot | BF16 |
YuE-s1-7B-anneal-zh-icl | m-a-p/YuE-s1-7B-anneal-zh-icl | /workspace/models/YuE-s1-7B-anneal-zh-icl | BF16 |
YuE-s2-1B-general | m-a-p/YuE-s2-1B-general | /workspace/models/YuE-s2-1B-general | BF16 |
YuE-upsampler | m-a-p/YuE-upsampler | /workspace/models/YuE-upsampler | BF16 |
YuE-s1-7B-anneal-en-cot-exl2-3.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-3.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-3.0bpw | EXL2 (3.0bpw) |
YuE-s1-7B-anneal-en-cot-exl2-4.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-4.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-4.0bpw | EXL2 (4.0bpw) |
YuE-s1-7B-anneal-en-cot-exl2-5.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-5.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-5.0bpw | EXL2 (5.0bpw) |
YuE-s1-7B-anneal-en-cot-exl2-6.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-6.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-6.0bpw | EXL2 (6.0bpw) |
YuE-s1-7B-anneal-en-cot-exl2-8.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-8.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-8.0bpw | EXL2 (8.0bpw) |
YuE-s2-1B-general-exl2-3.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-3.0bpw | /workspace/models/YuE-s2-1B-general-exl2-3.0bpw | EXL2 (3.0bpw) |
YuE-s2-1B-general-exl2-4.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-4.0bpw | /workspace/models/YuE-s2-1B-general-exl2-4.0bpw | EXL2 (4.0bpw) |
YuE-s2-1B-general-exl2-5.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-5.0bpw | /workspace/models/YuE-s2-1B-general-exl2-5.0bpw | EXL2 (5.0bpw) |
YuE-s2-1B-general-exl2-6.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-6.0bpw | /workspace/models/YuE-s2-1B-general-exl2-6.0bpw | EXL2 (6.0bpw) |
YuE-s2-1B-general-exl2-8.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-8.0bpw | /workspace/models/YuE-s2-1B-general-exl2-8.0bpw | EXL2 (8.0bpw) |
You can mount host directories to store models and outputs outside the container:
docker run --gpus all -it \
-v /path/to/models:/workspace/models \
-v /path/to/outputs:/workspace/outputs \
-p 7860:7860 \
-p 8888:8888 \
-e DOWNLOAD_MODELS=false \
alissonpereiraanjos/yue-exllamav2-interface:latest
-v /path/to/models:/workspace/models: Mounts the host's /path/to/models directory to /workspace/models inside the container.-v /path/to/outputs:/workspace/outputs: Mounts the host's /path/to/outputs directory to /workspace/outputs inside the container.-e DOWNLOAD_MODELS=false: Skips automatic model downloads (useful if models are already present in the mounted directories).If you prefer to use RunPod, you can quickly deploy an instance based on this image by using the following template link:
This link directs you to the RunPod console, allowing you to set up a machine directly with the YuE Interface image. Configure your GPU, volume mounts, and environment variables as needed.
Tip: If you generate music frequently, consider creating a Network Volume in RunPod. This allows you to store models and data persistently, avoiding repeated downloads and saving time.
Recommended Settings:
DOWNLOAD_MODELS=all_bf16To update the Docker image with the latest changes, run:
docker pull alissonpereiraanjos/yue-exllamav2-interface:latest
Note: Always update the image before running the container to ensure you have the latest features and fixes. This is especially important when deploying on RunPod, as it pulls the latest image upon creating a new pod.
The suffixes in the model keys indicate specific training or optimization techniques applied to the models:
| Suffix | Meaning | Description |
|---|---|---|
COT | Chain-of-Thought | Models trained with Chain-of-Thought to enhance reasoning and logical generation capabilities. |
ICL | In-Context Learning | Models optimized for In-Context Learning, allowing dynamic adaptation based on the provided context. |
Examples:
YuE-s1-7B-anneal-en-cot: A model trained with Chain-of-Thought techniques.YuE-s1-7B-anneal-en-icl: A model optimized for In-Context Learning.A special thanks to the YuE-exllamav2 repository for their incredible optimization work, which made this project possible.
For technical support or questions:
If you use this project in your research, please consider citing:
@misc{yuan2025yue,
title={YuE: Open Music Foundation Models for Full-Song Generation},
author={Ruibin Yuan et al.},
year={2025},
howpublished={\url{https://github.com/multimodal-art-projection/YuE}}
}
Experience music generation with accelerated performance! 🎵🚀
Python
97.0%
Shell
1.5%
Jupyter Notebook
1.0%
Now YuE can extend any uploaded mp3, with voice cloning and music contunuation.
It uses:
Seconds to take from mp3
conda create -n yue python=3.9
conda activate yue
# torch, exllama и flash_attn-2
pip install torch==2.4.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
pip install https://github.com/turboderp-org/exllamav2/releases/download/v0.2.7/exllamav2-0.2.7+cu121.torch2.4.0-cp39-cp39-win_amd64.whl
pip install https://github.com/bdashore3/flash-attention/releases/download/v2.7.1.post1/flash_attn-2.7.1.post1+cu124torch2.4.0cxx11abiFALSE-cp39-cp39-win_amd64.whl
git lfs install
git clone https://github.com/Mozer/YuE-extend
cd YuE-extend
pip install -r requirements.txt
git clone https://huggingface.co/m-a-p/xcodec_mini_infer
# download 3 exl2 модели (5.7 + 5.7 + 1.8 GB) into workspace\models:
huggingface-cli download Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-8.0bpw --local-dir workspace\models\YuE-s1-7B-anneal-en-cot-exl2-8.0bpw
huggingface-cli download Ftfyhh/YuE-s1-7B-anneal-en-icl-8.0bpw-exl2 --local-dir YuE-s1-7B-anneal-en-icl-8.0bpw-exl2
huggingface-cli download Alissonerdx/YuE-s2-1B-general-exl2-8.0bpw --local-dir workspace\models\YuE-s2-1B-general-exl2-8.0bpw
Run (double click) start-gui.bat open (ctrl click) http://127.0.0.1:7860/
There are 3 ways: COT model; ICL model + 2 additional tracks; ICL model + 1 additional common track. The first one is the simplest and most proven. In the web UI:
Additional checkboxes "Use Dual Tracks Audio Prompt?" and "Use Audio Prompt? (both vocal and instrumental)" will give the model the full music of the entire song. But this makes it much more difficult to control the generation. The model will try to generate what it has already heard from mp3, and it will repeat the source one by one. In these modes, try setting the "Audio prompt End Time" to 1-3 seconds more than in the "Seconds to take from mp3" field. Experiment with different segments to find a balance of similarity and novelty of generation.
| Stage | Original | ExLlamaV2 | Speedup |
|---|---|---|---|
| Stage 1 | 282s | 125s | 2.25x |
| Stage 2 | 666s | 49s | 13.6x |
| Total | 948s | 174s | 5.45x |
Configuration: BF16 models, Flash Attention 2 enabled, CFG enabled, batch size 4, 64k cache.
| Stage | ExLlamaV2 |
|---|---|
| Stage 1 | 317s |
| Stage 2 | 350s |
| Total | 667s |
Configuration: Quantized models with Q4/Q8 cache, Flash Attention 2 enabled.
Ensure you have Docker installed on your system. Follow the official Docker installation guides for your platform:
This interface requires NVIDIA GPUs for acceleration. Ensure you have the necessary hardware and drivers set up.
Linux:
Windows/macOS:
To simplify the setup and management of the YuE-Exllamav2-UI, you can use Docker Compose. Docker Compose allows you to define and run multi-container Docker applications with a single configuration file (docker-compose.yml). Below are the steps to get started.
Note: This docker-compose.yml file already exists in the root of the repository, you just need to download or copy the file and replace the directory mapping and run the command in the same directory as the file, see the explanation below.
Create a docker-compose.yml file:
version: '3.8'
services:
yue-exllamav2:
image: alissonpereiraanjos/yue-exllamav2-interface:latest
container_name: yue-exllamav2
restart: unless-stopped
ports:
- "7860:7860"
environment:
- DOWNLOAD_MODELS=all_bf16
volumes:
- /path/to/models:/workspace/models
- /path/to/outputs:/workspace/outputs
deploy:
resources:
reservations:
devices:
- capabilities: [gpu]
Run the container:
docker-compose up -d
Access the Interface: Once the container is running, access the Gradio UI at http://localhost:7860.
image: Specifies the Docker image to use (alissonpereiraanjos/yue-exllamav2-interface:latest).container_name: Sets a name for the container (yue-interface).restart: unless-stopped: Ensures the container restarts automatically unless manually stopped.ports: Maps container ports to the host:
7860:7860: Port for accessing the Gradio UI.8888:8888: Optional additional port (JupyterLab).environment: Defines environment variables:
DOWNLOAD_MODELS=all: Downloads all available models. Replace all with specific model keys (e.g., YuE-s2-1B-general,YuE-s1-7B-anneal-en-cot) to download only selected models.volumes: Maps host directories to the container:
/path/to/models:/workspace/models: Directory where models will be stored./path/to/outputs:/workspace/outputs: Directory where generated outputs will be saved./path/to/models and /path/to/outputs with the actual paths on your system.deploy.resources.reservations.devices: Enables GPU support in the container (requires NVIDIA GPU and drivers).Specific models: To download only specific models, modify the DOWNLOAD_MODELS environment variable in the docker-compose.yml file. For example:
environment:
- DOWNLOAD_MODELS=YuE-s2-1B-general,YuE-s1-7B-anneal-en-cot,YuE-s1-7B-anneal-en-icl,YuE-upsampler
Different ports: If you need to use different ports, adjust the port mappings under the ports section.
To run without Docker Compose:
docker run --gpus all -d \
-p 7860:7860 \
-e DOWNLOAD_MODELS=all_bf16 \
-v /path/to/models:/workspace/models \
-v /path/to/outputs:/workspace/outputs \
alissonpereiraanjos/yue-exllamav2-interface:latest
--gpus all: Enables NVIDIA GPU support.-d: Runs the container in detached mode (background).-p 7860:7860: Exposes port 7860 for accessing the Gradio UI at http://localhost:7860.-p 8888:8888: Exposes port 8888 for additional services if applicable.-e DOWNLOAD_MODELS=all_bf16: Downloads all bf16 available models upon initialization.all_bf16 to download all available models (BF16).DOWNLOAD_MODELS=YuE-s2-1B-general,YuE-s1-7B-anneal-en-cot).| Model Key | Model HF Repository | Container Path | Quantization |
|---|---|---|---|
xcodec_mini_infer | m-a-p/xcodec_mini_infer | /workspace/YuE-Interface/inference/xcodec_mini_infer | N/A |
YuE-s1-7B-anneal-en-cot | m-a-p/YuE-s1-7B-anneal-en-cot | /workspace/models/YuE-s1-7B-anneal-en-cot | BF16 |
YuE-s1-7B-anneal-en-icl | m-a-p/YuE-s1-7B-anneal-en-icl | /workspace/models/YuE-s1-7B-anneal-en-icl | BF16 |
YuE-s1-7B-anneal-jp-kr-cot | m-a-p/YuE-s1-7B-anneal-jp-kr-cot | /workspace/models/YuE-s1-7B-anneal-jp-kr-cot | BF16 |
YuE-s1-7B-anneal-jp-kr-icl | m-a-p/YuE-s1-7B-anneal-jp-kr-icl | /workspace/models/YuE-s1-7B-anneal-jp-kr-icl | BF16 |
YuE-s1-7B-anneal-zh-cot | m-a-p/YuE-s1-7B-anneal-zh-cot | /workspace/models/YuE-s1-7B-anneal-zh-cot | BF16 |
YuE-s1-7B-anneal-zh-icl | m-a-p/YuE-s1-7B-anneal-zh-icl | /workspace/models/YuE-s1-7B-anneal-zh-icl | BF16 |
YuE-s2-1B-general | m-a-p/YuE-s2-1B-general | /workspace/models/YuE-s2-1B-general | BF16 |
YuE-upsampler | m-a-p/YuE-upsampler | /workspace/models/YuE-upsampler | BF16 |
YuE-s1-7B-anneal-en-cot-exl2-3.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-3.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-3.0bpw | EXL2 (3.0bpw) |
YuE-s1-7B-anneal-en-cot-exl2-4.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-4.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-4.0bpw | EXL2 (4.0bpw) |
YuE-s1-7B-anneal-en-cot-exl2-5.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-5.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-5.0bpw | EXL2 (5.0bpw) |
YuE-s1-7B-anneal-en-cot-exl2-6.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-6.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-6.0bpw | EXL2 (6.0bpw) |
YuE-s1-7B-anneal-en-cot-exl2-8.0bpw | Alissonerdx/YuE-s1-7B-anneal-en-cot-exl2-8.0bpw | /workspace/models/YuE-s1-7B-anneal-en-cot-exl2-8.0bpw | EXL2 (8.0bpw) |
YuE-s2-1B-general-exl2-3.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-3.0bpw | /workspace/models/YuE-s2-1B-general-exl2-3.0bpw | EXL2 (3.0bpw) |
YuE-s2-1B-general-exl2-4.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-4.0bpw | /workspace/models/YuE-s2-1B-general-exl2-4.0bpw | EXL2 (4.0bpw) |
YuE-s2-1B-general-exl2-5.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-5.0bpw | /workspace/models/YuE-s2-1B-general-exl2-5.0bpw | EXL2 (5.0bpw) |
YuE-s2-1B-general-exl2-6.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-6.0bpw | /workspace/models/YuE-s2-1B-general-exl2-6.0bpw | EXL2 (6.0bpw) |
YuE-s2-1B-general-exl2-8.0bpw | Alissonerdx/YuE-s2-1B-general-exl2-8.0bpw | /workspace/models/YuE-s2-1B-general-exl2-8.0bpw | EXL2 (8.0bpw) |
You can mount host directories to store models and outputs outside the container:
docker run --gpus all -it \
-v /path/to/models:/workspace/models \
-v /path/to/outputs:/workspace/outputs \
-p 7860:7860 \
-p 8888:8888 \
-e DOWNLOAD_MODELS=false \
alissonpereiraanjos/yue-exllamav2-interface:latest
-v /path/to/models:/workspace/models: Mounts the host's /path/to/models directory to /workspace/models inside the container.-v /path/to/outputs:/workspace/outputs: Mounts the host's /path/to/outputs directory to /workspace/outputs inside the container.-e DOWNLOAD_MODELS=false: Skips automatic model downloads (useful if models are already present in the mounted directories).If you prefer to use RunPod, you can quickly deploy an instance based on this image by using the following template link:
This link directs you to the RunPod console, allowing you to set up a machine directly with the YuE Interface image. Configure your GPU, volume mounts, and environment variables as needed.
Tip: If you generate music frequently, consider creating a Network Volume in RunPod. This allows you to store models and data persistently, avoiding repeated downloads and saving time.
Recommended Settings:
DOWNLOAD_MODELS=all_bf16To update the Docker image with the latest changes, run:
docker pull alissonpereiraanjos/yue-exllamav2-interface:latest
Note: Always update the image before running the container to ensure you have the latest features and fixes. This is especially important when deploying on RunPod, as it pulls the latest image upon creating a new pod.
The suffixes in the model keys indicate specific training or optimization techniques applied to the models:
| Suffix | Meaning | Description |
|---|---|---|
COT | Chain-of-Thought | Models trained with Chain-of-Thought to enhance reasoning and logical generation capabilities. |
ICL | In-Context Learning | Models optimized for In-Context Learning, allowing dynamic adaptation based on the provided context. |
Examples:
YuE-s1-7B-anneal-en-cot: A model trained with Chain-of-Thought techniques.YuE-s1-7B-anneal-en-icl: A model optimized for In-Context Learning.A special thanks to the YuE-exllamav2 repository for their incredible optimization work, which made this project possible.
For technical support or questions:
If you use this project in your research, please consider citing:
@misc{yuan2025yue,
title={YuE: Open Music Foundation Models for Full-Song Generation},
author={Ruibin Yuan et al.},
year={2025},
howpublished={\url{https://github.com/multimodal-art-projection/YuE}}
}
Experience music generation with accelerated performance! 🎵🚀
Python
97.0%
Shell
1.5%
Jupyter Notebook
1.0%