Cainiao-AI/LaDe-D
Viewer • Updated • 4.51M • 442 • 4
How to use muthuk1/fairrelay-driver-effort with Scikit-learn:
from huggingface_hub import hf_hub_download
import joblib
model = joblib.load(
hf_hub_download("muthuk1/fairrelay-driver-effort", "sklearn_model.joblib")
)
# only load pickle files from sources you trust
# read more about it here https://skops.readthedocs.io/en/stable/persistence.htmlPart of the FairRelay AI logistics platform.
Driver Effort Prediction Model
Type: XGBRegressor Pipeline
Framework: scikit-learn Pipeline + XGBoost
Task: Regression
| Feature | Importance |
|---|---|
num_packages |
0.2922 |
total_weight_kg |
0.0802 |
num_stops |
0.0793 |
route_difficulty_score |
0.0059 |
estimated_time_minutes |
0.4706 |
experience_days |
0.0601 |
recent_avg_workload |
0.0029 |
recent_hard_days |
0.0087 |
from skops import io as sio
from huggingface_hub import hf_hub_download
# Download and load
model_path = hf_hub_download(repo_id="muthuk1/fairrelay-driver-effort", filename="model.skops")
untrusted = sio.get_untrusted_types(file=model_path)
model = sio.load(model_path, trusted=untrusted)
# Predict
import numpy as np
features = np.array([[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]])
prediction = model.predict(features)
FairRelay is an AI-powered logistics platform for fair load consolidation and dispatch:
Built for LogisticsNow Hackathon 2026 — Challenge #5: AI Load Consolidation
MIT