├── README.md └── disco_colab.ipynb /README.md: -------------------------------------------------------------------------------- 1 | 🐣 Please follow me for new updates https://twitter.com/camenduru
2 | 🔥 Please join our discord server https://discord.gg/k5BwmmvJJU
3 | 🥳 Please join my patreon community https://patreon.com/camenduru
4 | 5 | ## 🦒 Colab 6 | 7 | | Colab | Info 8 | | --- | --- | 9 | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/camenduru/disco-colab/blob/main/disco_colab.ipynb) | disco_colab 10 | 11 | ## Main Repo 12 | https://github.com/MenghanXia/DisentangledColorization 13 | https://huggingface.co/spaces/menghanxia/disco/tree/main 14 | 15 | ## Paper 16 | https://menghanxia.github.io/projects/disco/disco_main.pdf 17 | 18 | ## Page 19 | https://menghanxia.github.io/projects/disco.html 20 | 21 | ## Output 22 | ![Screenshot 2023-10-15 182432](https://github.com/camenduru/disco-colab/assets/54370274/7c198d0e-5687-4d68-baad-0c774e543a43) 23 | ![Screenshot 2023-10-15 182541](https://github.com/camenduru/disco-colab/assets/54370274/f049f6a6-a14d-4772-90f8-f82cebe12b8d) 24 | -------------------------------------------------------------------------------- /disco_colab.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": { 6 | "id": "view-in-github" 7 | }, 8 | "source": [ 9 | "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/camenduru/disco-colab/blob/main/disco_colab.ipynb)" 10 | ] 11 | }, 12 | { 13 | "cell_type": "code", 14 | "execution_count": null, 15 | "metadata": { 16 | "id": "VjYy0F2gZIPR" 17 | }, 18 | "outputs": [], 19 | "source": [ 20 | "%cd /content\n", 21 | "!git clone -b dev https://github.com/camenduru/disco-hf\n", 22 | "!pip install -q lpips yapf tensorboardx addict gradio\n", 23 | "%cd /content/disco-hf\n", 24 | "!python app.py" 25 | ] 26 | } 27 | ], 28 | "metadata": { 29 | "accelerator": "GPU", 30 | "colab": { 31 | "gpuType": "T4", 32 | "provenance": [] 33 | }, 34 | "kernelspec": { 35 | "display_name": "Python 3", 36 | "name": "python3" 37 | }, 38 | "language_info": { 39 | "name": "python" 40 | } 41 | }, 42 | "nbformat": 4, 43 | "nbformat_minor": 0 44 | } 45 | --------------------------------------------------------------------------------