-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_inference.py
71 lines (55 loc) · 2.66 KB
/
model_inference.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
"""Integration model inference."""
import logging
import joblib
import pandas as pd
from data_preprocessing import preprocess_data
from feature_engineering import feature_engineering
# Настройка логирования
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
def load_model(model_path):
"""Загрузка модели с указанного пути."""
try:
return joblib.load(model_path)
except Exception as e:
logger.error("Ошибка при загрузке модели: %s", str(e))
return None
def predict_churn(model, new_data: pd.DataFrame):
"""Предсказание оттока клиентов на основе новых данных."""
try:
# Предобработка новых данных
new_data = preprocess_data(new_data, is_training=False)
new_data = feature_engineering(new_data, is_training=False)
# Загрузка имен признаков и обеспечение соответствия
feature_names = joblib.load('models/feature_names.pkl')
new_data = new_data[feature_names]
# Прогнозы
predictions = model.predict(new_data)
probabilities = model.predict_proba(new_data)[:, 1]
return predictions, probabilities
except Exception as e:
logger.error("Ошибка при предсказании: %s", str(e))
return None, None
if __name__ == "__main__":
model = load_model('models/churn_model.pkl')
if model is None:
logger.error("Не удалось загрузить модель")
else:
try:
new_data = pd.read_csv('data/new_customer_data.csv')
predictions, probabilities = predict_churn(model, new_data)
if predictions is not None and probabilities is not None:
new_data['ChurnPrediction'] = predictions
new_data['ChurnProbability'] = probabilities
new_data.to_csv(
'data/new_customer_predictions.csv', index=False
)
logger.info("Предсказания успешно сохранены")
else:
logger.error("Не удалось выполнить предсказания")
except FileNotFoundError:
logger.error(
"Файл 'new_customer_data.csv' не найден в директории 'data'"
)
except Exception as e:
logger.error("Произошла ошибка при обработке данных: %s", str(e))