Update app.py
Browse files
app.py
CHANGED
|
@@ -10,7 +10,7 @@ device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cp
|
|
| 10 |
|
| 11 |
classifier = pipeline("zero-shot-classification", model="MoritzLaurer/mDeBERTa-v3-base-mnli-xnli")
|
| 12 |
|
| 13 |
-
with open('
|
| 14 |
titles_astiko = pickle.load(file)
|
| 15 |
|
| 16 |
|
|
|
|
| 10 |
|
| 11 |
classifier = pipeline("zero-shot-classification", model="MoritzLaurer/mDeBERTa-v3-base-mnli-xnli")
|
| 12 |
|
| 13 |
+
with open('astiko_titles.pkl', 'rb') as file:
|
| 14 |
titles_astiko = pickle.load(file)
|
| 15 |
|
| 16 |
|