Spaces:
Sleeping
Sleeping
Uploading food not food text classifier demo app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ from transformers import pipeline
|
|
6 |
def food_not_food_classifier(text):
|
7 |
# Set up text classification pipeline
|
8 |
food_not_food_classifier = pipeline(task="text-classification",
|
9 |
-
model="mrdbourke/learn_hf_food_not_food_text_classifier-distilbert-base-uncased",
|
10 |
device="cuda" if torch.cuda.is_available() else "cpu",
|
11 |
top_k=None) # return all possible scores (not just top-1)
|
12 |
|
|
|
6 |
def food_not_food_classifier(text):
|
7 |
# Set up text classification pipeline
|
8 |
food_not_food_classifier = pipeline(task="text-classification",
|
9 |
+
model="mrdbourke/learn_hf_food_not_food_text_classifier-distilbert-base-uncased", # link to model on HF Hub
|
10 |
device="cuda" if torch.cuda.is_available() else "cpu",
|
11 |
top_k=None) # return all possible scores (not just top-1)
|
12 |
|