Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
import torch
|
|
|
3 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
4 |
|
5 |
# Define the BLOOM model name
|
@@ -11,6 +12,7 @@ model = AutoModelForCausalLM.from_pretrained(model_name)
|
|
11 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
12 |
model.to(device)
|
13 |
|
|
|
14 |
def generate_text(user_prompt):
|
15 |
"""Generates text using the BLOOM model from Hugging Face Transformers and removes the user prompt."""
|
16 |
# Construct the full prompt with system introduction, user prompt, and assistant role
|
|
|
1 |
import gradio as gr
|
2 |
import torch
|
3 |
+
import spaces
|
4 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
5 |
|
6 |
# Define the BLOOM model name
|
|
|
12 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
13 |
model.to(device)
|
14 |
|
15 |
+
@spaces.GPU(duration=120)
|
16 |
def generate_text(user_prompt):
|
17 |
"""Generates text using the BLOOM model from Hugging Face Transformers and removes the user prompt."""
|
18 |
# Construct the full prompt with system introduction, user prompt, and assistant role
|