Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ from moderation import * # Убедитесь, что в moderation.py есть
|
|
4 |
|
5 |
# Загрузка модели
|
6 |
moderation = ModerationModel()
|
7 |
-
moderation.load_state_dict(torch.load('moderation_model.pth'))
|
8 |
moderation.eval() # Переключение модели в режим оценки
|
9 |
|
10 |
def predict_moderation(text):
|
|
|
4 |
|
5 |
# Загрузка модели
|
6 |
moderation = ModerationModel()
|
7 |
+
moderation.load_state_dict(torch.load('moderation_model.pth', map_location=torch.device('cpu')))
|
8 |
moderation.eval() # Переключение модели в режим оценки
|
9 |
|
10 |
def predict_moderation(text):
|