File size: 6,540 Bytes
4889ed5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "view-in-github"
},
"source": [
"<a href=\"https://colab.research.google.com/github/microsoft/VibeVoice/blob/main/demo/VibeVoice_colab.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"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
}
|