Spaces:
Runtime error
Runtime error
typo fix
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ model = AutoModelForSequenceClassification.from_pretrained("daspartho/anime-or-n
|
|
6 |
|
7 |
label_map = {
|
8 |
'LABEL_0':"That's not Anime enough!",
|
9 |
-
'LABEL_1':"That's
|
10 |
}
|
11 |
|
12 |
pipe = TextClassificationPipeline(model=model, tokenizer=tokenizer)
|
|
|
6 |
|
7 |
label_map = {
|
8 |
'LABEL_0':"That's not Anime enough!",
|
9 |
+
'LABEL_1':"That's an Anime!",
|
10 |
}
|
11 |
|
12 |
pipe = TextClassificationPipeline(model=model, tokenizer=tokenizer)
|