Spaces:
Sleeping
Sleeping
File size: 1,035 Bytes
36257ed f15add5 36257ed f15add5 36257ed f15add5 36257ed f15add5 36257ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import gradio as gr
from transformers import pipeline
# Создаем конвейер генерации текста с помощью предварительно обученной модели
generator = pipeline('text-generation', model='gpt2')
def generate_text(prompt):
# Генерируем текст на основе введенного пользователем запроса
result = generator(prompt, max_length=50, num_return_sequences=1)
return result[0]['generated_text']
# Создаем интерфейс Gradio
interface = gr.Interface(fn=generate_text,
inputs=gr.Textbox(lines=2, placeholder="Введите текст..."),
outputs='text',
title="Генератор текста на основе GPT-2",
description="Введите начало предложения и получите продолжение от GPT-2.")
# Запускаем приложение
interface.launch()
|