Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,17 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
3 |
import torch
|
|
|
|
|
4 |
|
5 |
# Load the original pre-trained model
|
6 |
def load_model(model_name):
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
8 |
model = AutoModelForSequenceClassification.from_pretrained(model_name)
|
9 |
return tokenizer, model
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
3 |
import torch
|
4 |
+
from huggingface_hub import login
|
5 |
+
import os
|
6 |
|
7 |
# Load the original pre-trained model
|
8 |
def load_model(model_name):
|
9 |
+
hf_token = os.getenv('HUGGINGFACE_TOKEN')
|
10 |
+
if not hf_token:
|
11 |
+
return "Error: Hugging Face token not found. Please set it as a secret."
|
12 |
+
|
13 |
+
# Login to Hugging Face Hub
|
14 |
+
login(hf_token)
|
15 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
16 |
model = AutoModelForSequenceClassification.from_pretrained(model_name)
|
17 |
return tokenizer, model
|