Spaces:
Running
Running
File size: 1,794 Bytes
98da139 |
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 |
{
"cells": [
{
"cell_type": "markdown",
"source": [
"**This notebook has been updated in [here](https://github.com/jhj0517/Whisper-WebUI.git) !**"
],
"metadata": {
"id": "doKhBBXIfS21"
}
},
{
"cell_type": "code",
"source": [
"#@title #Check GPU\n",
"#@markdown Some models may not function correctly on a CPU runtime. \n",
"\n",
"#@markdown so you should check your GPU setup before run.\n",
"!nvidia-smi"
],
"metadata": {
"id": "23yZvUlagEsx",
"cellView": "form"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "kNbSbsctxahq",
"cellView": "form"
},
"outputs": [],
"source": [
"#@title #Installation\n",
"#@markdown This cell will install dependencies for Whisper-WebUI!\n",
"!git clone https://github.com/jhj0517/Whisper-WebUI.git\n",
"%cd Whisper-WebUI\n",
"!pip install -r requirements.txt"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "PQroYRRZzQiN",
"cellView": "form"
},
"outputs": [],
"source": [
"#@title #Run\n",
"#@markdown Once the installation is complete, you can use public URL that is displayed.\n",
"!python app.py --share"
]
}
],
"metadata": {
"colab": {
"provenance": [],
"gpuType": "A100"
},
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
},
"language_info": {
"name": "python"
},
"accelerator": "GPU"
},
"nbformat": 4,
"nbformat_minor": 0
} |