cakemus commited on
Commit
ed0ae5f
·
1 Parent(s): f404d24
Files changed (1) hide show
  1. app.py +13 -8
app.py CHANGED
@@ -1,16 +1,21 @@
1
  import gradio as gr
2
  from transformers import pipeline
3
 
4
- # Load a simple model (fill-mask task as an example)
5
- model = pipeline("fill-mask", model="distilroberta-base")
6
 
7
- # Define the function to use the GPU
8
- def predict(text):
9
- return model(text)
10
 
11
- # Gradio Interface
12
- interface = gr.Interface(fn=predict, inputs="text", outputs="text")
 
 
 
 
 
 
 
13
 
14
- # Launch the interface
15
  if __name__ == "__main__":
16
  interface.launch()
 
1
  import gradio as gr
2
  from transformers import pipeline
3
 
4
+ # Load a large model (e.g., text generation)
5
+ model = pipeline("text-generation", model="gpt-3")
6
 
7
+ def generate_text(prompt):
8
+ return model(prompt, max_length=50)
 
9
 
10
+ # Custom interface with sliders and descriptions
11
+ interface = gr.Interface(
12
+ fn=generate_text,
13
+ inputs=gr.Textbox(label="Enter your prompt here"),
14
+ outputs=gr.Textbox(label="Generated Text"),
15
+ title="AI Text Generator",
16
+ description="This app generates text based on your input prompt. Try it out!",
17
+ theme="dark"
18
+ )
19
 
 
20
  if __name__ == "__main__":
21
  interface.launch()