Spaces:
Runtime error
Runtime error
File size: 325 Bytes
e412e0d |
1 2 3 4 5 6 7 8 9 10 11 12 |
from fastapi import FastAPI
import gradio as gr
import torch
from diffusers import DiffusionPipeline
import uvicorn
description = "Image generation with GPT-2"
title = "IMAGE GENERATION MACHINE"
interface = gr.Interface.load('ControlNet-1-1-preview/control_v11p_sd15_lineart', 'huggingface')
interface.launch(share = True) |