{ "cells": [ { "cell_type": "markdown", "metadata": { "id": "G9BdiCppV6AS" }, "source": [ "# Colab for roop-unleashed - Gradio version\n", "https://github.com/C0untFloyd/roop-unleashed\n" ] }, { "cell_type": "markdown", "metadata": { "id": "CanIXgLJgaOj" }, "source": [ "Install CUDA V11.8 on Google Cloud Compute" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "96GE4UgYg3Ej" }, "outputs": [], "source": [ "!apt-get -y update\n", "!apt-get -y install cuda-toolkit-11-8\n", "import os\n", "os.environ[\"LD_LIBRARY_PATH\"] += \":\" + \"/usr/local/cuda-11/lib64\"\n", "os.environ[\"LD_LIBRARY_PATH\"] += \":\" + \"/usr/local/cuda-11.8/lib64\"" ] }, { "cell_type": "markdown", "metadata": { "id": "0ZYRNb0AWLLW" }, "source": [ "Installing & preparing requirements" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "t1yPuhdySqCq" }, "outputs": [], "source": [ "!git clone https://github.com/C0untFloyd/roop-unleashed.git\n", "%cd roop-unleashed\n", "!mv config_colab.yaml config.yaml\n", "!pip install -r requirements.txt" ] }, { "cell_type": "markdown", "metadata": { "id": "u_4JQiSlV9Fi" }, "source": [ "Running roop-unleashed with default config" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "Is6U2huqSzLE" }, "outputs": [], "source": [ "!python run.py" ] }, { "cell_type": "markdown", "metadata": { "id": "UdQ1VHdI8lCf" }, "source": [ "### Download generated images folder\n", "(only needed if you want to zip the generated output)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 17 }, "id": "oYjWveAmw10X", "outputId": "5b4c3650-f951-434a-c650-5525a8a70c1e" }, "outputs": [ { "data": { "application/javascript": "\n async function download(id, filename, size) {\n if (!google.colab.kernel.accessAllowed) {\n return;\n }\n const div = document.createElement('div');\n const label = document.createElement('label');\n label.textContent = `Downloading \"${filename}\": `;\n div.appendChild(label);\n const progress = document.createElement('progress');\n progress.max = size;\n div.appendChild(progress);\n document.body.appendChild(div);\n\n const buffers = [];\n let downloaded = 0;\n\n const channel = await google.colab.kernel.comms.open(id);\n // Send a message to notify the kernel that we're ready.\n channel.send({})\n\n for await (const message of channel.messages) {\n // Send a message to notify the kernel that we're ready.\n channel.send({})\n if (message.buffers) {\n for (const buffer of message.buffers) {\n buffers.push(buffer);\n downloaded += buffer.byteLength;\n progress.value = downloaded;\n }\n }\n }\n const blob = new Blob(buffers, {type: 'application/binary'});\n const a = document.createElement('a');\n a.href = window.URL.createObjectURL(blob);\n a.download = filename;\n div.appendChild(a);\n a.click();\n div.remove();\n }\n ", "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": "download(\"download_789eab11-93d2-4880-adf3-6aceee0cc5f9\", \"fake_output.zip.zip\", 80125)", "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import shutil\n", "import os\n", "from google.colab import files\n", "\n", "def zip_directory(directory_path, zip_path):\n", " shutil.make_archive(zip_path, 'zip', directory_path)\n", "\n", "# Set the directory path you want to download\n", "directory_path = '/content/roop-unleashed/output'\n", "\n", "# Set the zip file name\n", "zip_filename = 'fake_output.zip'\n", "\n", "# Zip the directory\n", "zip_directory(directory_path, zip_filename)\n", "\n", "# Download the zip file\n", "files.download(zip_filename+'.zip')\n" ] } ], "metadata": { "accelerator": "GPU", "colab": { "collapsed_sections": [ "UdQ1VHdI8lCf" ], "gpuType": "T4", "provenance": [] }, "kernelspec": { "display_name": "Python 3", "name": "python3" }, "language_info": { "name": "python" } }, "nbformat": 4, "nbformat_minor": 0 }