Spaces:
Build error
Build error
File size: 2,005 Bytes
e151d05 e44b083 e151d05 e44b083 e151d05 e44b083 e151d05 e44b083 e151d05 e44b083 e151d05 e44b083 |
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 |
import gradio as gr
from transformers import pipeline
from diffusers import StableDiffusionPipeline
from PIL import Image
import torch
# Загрузка модели Qwen/QVQ-72B-preview (пример для текстовой модели)
def load_text_model():
text_pipeline = pipeline("text-generation", model="Qwen/QVQ-72B-preview")
return text_pipeline
# Загрузка модели fffiloni/AniDoc (пример для модели анализа изображений)
def load_image_model():
image_pipeline = StableDiffusionPipeline.from_pretrained("fffiloni/AniDoc")
return image_pipeline
# Функция для генерации текста
def generate_text(prompt, text_pipeline):
result = text_pipeline(prompt, max_length=50)
return result[0]['generated_text']
# Функция для анализа изображения
def analyze_image(image, image_pipeline):
# Пример: генерация изображения на основе входного изображения
prompt = "Anime style"
output_image = image_pipeline(prompt, image=image).images[0]
return output_image
# Загрузка моделей
text_pipeline = load_text_model()
image_pipeline = load_image_model()
# Создание Gradio интерфейса
with gr.Blocks() as demo:
with gr.Tab("Text Generation"):
text_input = gr.Textbox(label="Input Prompt")
text_output = gr.Textbox(label="Generated Text")
text_button = gr.Button("Generate Text")
text_button.click(fn=generate_text, inputs=[text_input, gr.State(text_pipeline)], outputs=text_output)
with gr.Tab("Image Analysis"):
image_input = gr.Image(label="Input Image", type="pil")
image_output = gr.Image(label="Output Image")
image_button = gr.Button("Analyze Image")
image_button.click(fn=analyze_image, inputs=[image_input, gr.State(image_pipeline)], outputs=image_output)
# Запуск интерфейса
demo.launch() |