{ "cells": [ { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "view-in-github" }, "source": [ "\"Open" ] }, { "cell_type": "markdown", "id": "WvIaUJD2y0yU", "metadata": { "id": "WvIaUJD2y0yU" }, "source": [ "# VibeVoice Colab — T4 Quickstart (1.5B)\n", "\n", "This notebook provides a quickstart guide to run VibeVoice on Colab with T4. The T4 GPU can only support the 1.5B model due to memory limitations. Please note that T4 can only use SDPA instead of flash_attention_2, which may result in unstable and lower audio quality. For the best TTS experience, we recommend trying the 7B model on a more powerful GPU.\n" ] }, { "cell_type": "markdown", "id": "e8fTKYGx7DZk", "metadata": { "id": "e8fTKYGx7DZk" }, "source": [ "## Step 1: Setup Environment" ] }, { "cell_type": "code", "execution_count": null, "id": "4wxJ6QHM-ZOb", "metadata": { "id": "4wxJ6QHM-ZOb" }, "outputs": [], "source": [ "# Check for T4 GPU\n", "import torch\n", "if torch.cuda.is_available() and \"T4\" in torch.cuda.get_device_name(0):\n", " print(\"✅ T4 GPU detected\")\n", "else:\n", " print(\"\"\"\n", " ⚠️ WARNING: T4 GPU not detected\n", "\n", " The recommended runtime for this Colab notebook is \"T4 GPU\".\n", "\n", " To change the runtime type:\n", "\n", " 1. Click on \"Runtime\" in the top navigation menu\n", " 2. Click on \"Change runtime type\"\n", " 3. Select \"T4 GPU\"\n", " 4. Click \"OK\" if a \"Disconnect and delete runtime\" window appears\n", " 5. Click on \"Save\"\n", "\n", " \"\"\")\n", "\n", "# Clone the VibeVoice repository\n", "![ -d /content/VibeVoice ] || git clone --quiet --branch main --depth 1 https://github.com/microsoft/VibeVoice.git /content/VibeVoice\n", "print(\"✅ Cloned VibeVoice repository\")\n", "\n", "# Install project dependencies\n", "!uv pip --quiet install --system -e /content/VibeVoice\n", "print(\"✅ Installed dependencies\")\n", "\n", "# Download model (~3 minutes)\n", "!HF_XET_HIGH_PERFORMANCE=1 hf download microsoft/VibeVoice-1.5B --quiet --local-dir /content/models/VibeVoice-1.5B > /dev/null\n", "print(\"✅ Downloaded model: microsoft/VibeVoice-1.5B\")\n" ] }, { "cell_type": "markdown", "id": "pgKlV7153Ifi", "metadata": { "id": "pgKlV7153Ifi" }, "source": [ "## Step 2: Create Transcript" ] }, { "cell_type": "code", "execution_count": null, "id": "Yc1N9EHswFxA", "metadata": { "id": "Yc1N9EHswFxA" }, "outputs": [], "source": [ "%%writefile /content/my_transcript.txt\n", "Speaker 1: Can I try VibeVoice with my own example?\n", "Speaker 2: Of course! VibeVoice is open-source, built to benefit everyone - you're welcome to try it out.\n" ] }, { "cell_type": "markdown", "id": "MBCC6s-F6_hP", "metadata": { "id": "MBCC6s-F6_hP" }, "source": [ "## Step 3: Generate Audio" ] }, { "cell_type": "code", "execution_count": null, "id": "dYWsLJ-n0Npm", "metadata": { "id": "dYWsLJ-n0Npm" }, "outputs": [], "source": [ "# Run Python script to generate audio from transcript\n", "!python /content/VibeVoice/demo/inference_from_file.py \\\n", " --model_path /content/models/VibeVoice-1.5B \\\n", " --txt_path /content/my_transcript.txt \\\n", " --speaker_names Alice Frank\n", "\n", "# Display audio controls\n", "from IPython.display import Audio\n", "Audio(\"/content/outputs/my_transcript_generated.wav\")\n" ] }, { "cell_type": "markdown", "id": "ec6438d5", "metadata": {}, "source": [ "# Step 4: Download Audio" ] }, { "cell_type": "code", "execution_count": null, "id": "b40ffa22", "metadata": {}, "outputs": [], "source": [ "from google.colab import files\n", "files.download(\"/content/outputs/my_transcript_generated.wav\") \n" ] }, { "cell_type": "markdown", "id": "1bce752d", "metadata": {}, "source": [ "\n", "## Risks and Limitations\n", "\n", "While efforts have been made to optimize it through various techniques, it may still produce outputs that are unexpected, biased, or inaccurate. VibeVoice inherits any biases, errors, or omissions produced by its base model (specifically, Qwen2.5 1.5b in this release). Potential for Deepfakes and Disinformation: High-quality synthetic speech can be misused to create convincing fake audio content for impersonation, fraud, or spreading disinformation. Users must ensure transcripts are reliable, check content accuracy, and avoid using generated content in misleading ways. Users are expected to use the generated content and to deploy the models in a lawful manner, in full compliance with all applicable laws and regulations in the relevant jurisdictions. It is best practice to disclose the use of AI when sharing AI-generated content." ] } ], "metadata": { "accelerator": "GPU", "colab": { "gpuType": "T4", "include_colab_link": true, "machine_shape": "hm", "name": "VibeVoice_Colab.ipynb", "provenance": [] }, "kernelspec": { "display_name": "Python 3", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.11" } }, "nbformat": 4, "nbformat_minor": 5 }