Spaces:
Runtime error
Runtime error
File size: 2,171 Bytes
bdc93ac |
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 |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "39k2mOCNAh6J"
},
"source": [
"[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/SociallyIneptWeeb/AICoverGen/blob/main/AICoverGen_colab.ipynb)"
]
},
{
"cell_type": "markdown",
"source": [
"# AICoverGen WebUI\n",
"\n",
"Simply click `Runtime` in the top navigation bar and `Run all`. Wait for the output of the final cell to show the public gradio url and click on it."
],
"metadata": {
"id": "YYVAKuNBc-X4"
}
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "vC4gLMHI9xb3",
"cellView": "form"
},
"outputs": [],
"source": [
"#@title Clone repository\n",
"!git clone https://github.com/SociallyIneptWeeb/AICoverGen.git\n",
"%cd AICoverGen"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"cellView": "form",
"id": "odzpJHpr_PaF"
},
"outputs": [],
"source": [
"#@title Install requirements\n",
"!pip install -q -r requirements.txt"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"cellView": "form",
"id": "SLWpcJc0AHSZ"
},
"outputs": [],
"source": [
"#@title Download MDXNet Vocal Separation and Hubert Base Models\n",
"!python src/download_models.py"
]
},
{
"cell_type": "code",
"source": [
"#@title Run WebUI\n",
"!python src/webui.py --share"
],
"metadata": {
"cellView": "form",
"id": "NEglTq6Ya9d0"
},
"execution_count": null,
"outputs": []
}
],
"metadata": {
"accelerator": "GPU",
"colab": {
"provenance": []
},
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
},
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 0
} |