Spaces:
Runtime error
Runtime error
File size: 1,815 Bytes
3c2fcf4 bcba9c0 51ead85 bcba9c0 3c2fcf4 51ead85 3c2fcf4 04e15ae bcba9c0 04e15ae 0625494 aa1cd96 04e15ae 8a4cbc9 04e15ae bcba9c0 04e15ae bcba9c0 04e15ae bcba9c0 04e15ae bcba9c0 e74f212 04e15ae bcba9c0 |
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 49 50 51 52 53 54 |
import gradio as gr
from gradio.components import Dropdown, Textbox
from huggingface_hub import HfApi, ModelFilter
from transformers import pipeline
# Get the list of models from the Hugging Face Hub
api = HfApi()
models = api.list_models(author="gia-project", filter=ModelFilter(tags="text-generation"))
models_names = [model.modelId for model in models]
# Dictionary to store loaded models and their pipelines
model_pipelines = {}
# Load a default model initially
default_model_name = "gia-project/gia2-small-untrained"
def generate_text(model_name, input_text):
# Check if the selected model is already loaded
if model_name not in model_pipelines:
# Inform the user that the model is loading
yield "Loading model..."
# Load the model and create a pipeline if it's not already loaded
generator = pipeline("text-generation", model=model_name, trust_remote_code=True)
model_pipelines[model_name] = generator
# Get the pipeline for the selected model
generator = model_pipelines[model_name]
# Inform the user that the text is being generated
yield "Generating text..."
# Generate text
generated_text = generator(input_text)[0]["generated_text"]
# Return the generated text
yield generated_text
# Define the Gradio interface
iface = gr.Interface(
fn=generate_text, # Function to be called on user input
inputs=[
Dropdown(models_names, label="Select Model", value="gia-project/gia2-small-untrained"), # Select model
Textbox(lines=5, label="Input Text"), # Textbox for entering text
],
outputs=Textbox(label="Generated Text"), # Textbox to display the generated text
title="GIA Text Generation", # Title of the interface
)
# Launch the Gradio interface
iface.launch(enable_queue=True)
|