{ "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 }