Downloads · 30 days
0
SharleyK/predictive-maintenance-model
predictive-maintenance-model is a machine learning model from SharleyK. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for sklearn. The card lists the license as mit.
This model predicts engine failures for automotive predictive maintenance using sensor data.
Downloads · 30 days
0
Access
Public
Updated Feb 8, 2026
Repo size
327 KB
Likes
0
Public
Click a slice to open those files.
.pkl163 KB · 97%
From the Hugging Face model README
This model predicts engine failures for automotive predictive maintenance using sensor data.
Model Type: AdaBoost Task: Binary Classification (Normal vs Faulty Engine) Framework: scikit-learn / XGBoost
{
"learning_rate": 0.05,
"n_estimators": 100
}
The model uses 17 features including:
import joblib
from huggingface_hub import hf_hub_download
# Download model
model_path = hf_hub_download(
repo_id="SharleyK/predictive-maintenance-model",
filename="best_model.pkl"
)
# Load model
model = joblib.load(model_path)
# Download scaler
scaler_path = hf_hub_download(
repo_id="SharleyK/predictive-maintenance-model",
filename="scaler.pkl"
)
scaler = joblib.load(scaler_path)
# Make predictions
X_new_scaled = scaler.transform(X_new)
predictions = model.predict(X_new_scaled)
probabilities = model.predict_proba(X_new_scaled)
# Interpret results
# 0 = Normal/Healthy Engine
# 1 = Faulty/Requires Maintenance
This model was selected from 6 candidates:
Selection criteria: Highest test recall (to minimize false negatives - missed failures)
@model{predictive_maintenance_engine_model,
author = {SharleyK},
title = {Predictive Maintenance Model - Engine Failure Prediction},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/SharleyK/predictive-maintenance-model}
}
MIT License