Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
-
from transformers import
|
3 |
-
|
4 |
# Initialize the pipeline with the specific model
|
5 |
pipe = pipeline("text-generation", model="JamesBentley/Llama-2-7b-chat-hf-fine-tuned")
|
6 |
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
3 |
+
import torch
|
4 |
# Initialize the pipeline with the specific model
|
5 |
pipe = pipeline("text-generation", model="JamesBentley/Llama-2-7b-chat-hf-fine-tuned")
|
6 |
|