Spaces:
Runtime error
Runtime error
File size: 10,479 Bytes
fc31c67 |
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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "xYJFXKP9xhQM"
},
"source": [
"## Clone Repo"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "hegwDOfffwzw"
},
"outputs": [],
"source": [
"!cd /content\n",
"!rm -rf /content/ChatTTS\n",
"!git clone https://github.com/2noise/ChatTTS.git\n",
"!pip install -r /content/ChatTTS/requirements.txt\n",
"!ldconfig /usr/lib64-nvidia"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "zdzEFoknxqTH"
},
"source": [
"## Import Libs"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "lDSQ6Xf-bSre"
},
"outputs": [],
"source": [
"from dotenv import load_dotenv\n",
"load_dotenv(\"ChatTTS/sha256.env\")\n",
"\n",
"import torch\n",
"torch._dynamo.config.cache_size_limit = 64\n",
"torch._dynamo.config.suppress_errors = True\n",
"torch.set_float32_matmul_precision('high')\n",
"\n",
"from ChatTTS import ChatTTS\n",
"from IPython.display import Audio"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "vBzG5gxcbSrf"
},
"source": [
"## Load Models"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "e0QSkngRbSrg"
},
"outputs": [],
"source": [
"chat = ChatTTS.Chat()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Here are three choices for loading models:"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 1. Load models from Hugging Face:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# use force_redownload=True if the weights have been updated.\n",
"chat.load_models(source='huggingface', force_redownload=True)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 2. Load models from local directories 'asset' and 'config':"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"chat.load_models()\n",
"# chat.load_models(source='local') same as above"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 3. Load models from a custom path:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# write the model path into custom_path\n",
"chat.load_models(source='custom', custom_path='YOUR CUSTOM PATH')"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "bAUs0rGQbSrh"
},
"source": [
"## Inference"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "NPZ2SFksbSrh"
},
"source": [
"### Batch infer"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "Su9FmUYAbSrh"
},
"outputs": [],
"source": [
"texts = [\"So we found being competitive and collaborative was a huge way of staying motivated towards our goals, so one person to call when you fall off, one person who gets you back on then one person to actually do the activity with.\",]*3 \\\n",
" + [\"我觉得像我们这些写程序的人,他,我觉得多多少少可能会对开源有一种情怀在吧我觉得开源是一个很好的形式。现在其实最先进的技术掌握在一些公司的手里的话,就他们并不会轻易的开放给所有的人用。\"]*3\n",
"\n",
"wavs = chat.infer(texts)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "YQRwB8lpbSri"
},
"outputs": [],
"source": [
"Audio(wavs[0], rate=24_000, autoplay=True)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "LuFG6m7AbSri"
},
"outputs": [],
"source": [
"Audio(wavs[3], rate=24_000, autoplay=True)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "oLhAGvkfbSrj"
},
"source": [
"### Custom params"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "kma0HBEBbSrj"
},
"outputs": [],
"source": [
"params_infer_code = {'prompt':'[speed_5]', 'temperature':.3}\n",
"params_refine_text = {'prompt':'[oral_2][laugh_0][break_6]'}\n",
"\n",
"wav = chat.infer('四川美食可多了,有麻辣火锅、宫保鸡丁、麻婆豆腐、担担面、回锅肉、夫妻肺片等,每样都让人垂涎三尺。', \\\n",
" params_refine_text=params_refine_text, params_infer_code=params_infer_code)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "Nl_mT9KpbSrj"
},
"outputs": [],
"source": [
"Audio(wav[0], rate=24_000, autoplay=True)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "JfAba-tTbSrk"
},
"source": [
"### fix random speaker"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "Qh7dcWrAbSrk"
},
"outputs": [],
"source": [
"rand_spk = chat.sample_random_speaker()\n",
"params_infer_code = {'spk_emb' : rand_spk, }\n",
"\n",
"wav = chat.infer('四川美食确实以辣闻名,但也有不辣的选择。比如甜水面、赖汤圆、蛋烘糕、叶儿粑等,这些小吃口味温和,甜而不腻,也很受欢迎。', \\\n",
" params_refine_text=params_refine_text, params_infer_code=params_infer_code)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "0ljWDWzabSrk"
},
"outputs": [],
"source": [
"Audio(wav[0], rate=24_000, autoplay=True)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "u1q-BcUKbSrl"
},
"source": [
"### Two stage control"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "3hAAc0lJbSrl"
},
"outputs": [],
"source": [
"text = \"So we found being competitive and collaborative was a huge way of staying motivated towards our goals, so one person to call when you fall off, one person who gets you back on then one person to actually do the activity with.\"\n",
"refined_text = chat.infer(text, refine_text_only=True)\n",
"refined_text"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "0GVJxhd3BKQX"
},
"outputs": [],
"source": [
"wav = chat.infer(refined_text)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "ngyMht74BicY"
},
"outputs": [],
"source": [
"Audio(wav[0], rate=24_000, autoplay=True)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "R2WjuVrWbSrl"
},
"outputs": [],
"source": [
"text = 'so we found being competitive and collaborative [uv_break] was a huge way of staying [uv_break] motivated towards our goals, [uv_break] so [uv_break] one person to call [uv_break] when you fall off, [uv_break] one person who [uv_break] gets you back [uv_break] on then [uv_break] one person [uv_break] to actually do the activity with.'\n",
"wav = chat.infer(text, skip_refine_text=True)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "71Y4pBdl-_Yd"
},
"outputs": [],
"source": [
"Audio(wav[0], rate=24_000, autoplay=True)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "GG5AMbQbbSrl"
},
"source": [
"## LLM Call"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "3rkfwc3UbSrl"
},
"outputs": [],
"source": [
"from ChatTTS.experimental.llm import llm_api\n",
"\n",
"API_KEY = ''\n",
"client = llm_api(api_key=API_KEY,\n",
" base_url=\"https://api.deepseek.com\",\n",
" model=\"deepseek-chat\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "TTkIsXozbSrm"
},
"outputs": [],
"source": [
"user_question = '四川有哪些好吃的美食呢?'\n",
"text = client.call(user_question, prompt_version = 'deepseek')\n",
"print(text)\n",
"text = client.call(text, prompt_version = 'deepseek_TN')\n",
"print(text)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "qNhCJG4VbSrm"
},
"outputs": [],
"source": [
"params_infer_code = {'spk_emb' : rand_spk, 'temperature':.3}\n",
"\n",
"wav = chat.infer(text, params_infer_code=params_infer_code)"
]
}
],
"metadata": {
"accelerator": "GPU",
"colab": {
"collapsed_sections": [
"bAUs0rGQbSrh"
],
"gpuType": "T4",
"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.8"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|