File size: 11,572 Bytes
bbf5602 ebdf770 6036fe4 bbf5602 6036fe4 ebdf770 a4602e3 bbf5602 ebdf770 6036fe4 ebdf770 bbf5602 ebdf770 fec5550 ebdf770 bbf5602 ebdf770 d422415 ebdf770 d422415 ebdf770 bbf5602 ebdf770 bbf5602 ebdf770 d422415 bbf5602 ebdf770 6036fe4 ebdf770 bbf5602 ebdf770 bbf5602 ebdf770 6036fe4 ebdf770 6036fe4 ebdf770 6036fe4 ebdf770 6036fe4 ebdf770 6036fe4 ebdf770 6036fe4 ebdf770 6036fe4 ebdf770 a4602e3 ebdf770 fec5550 ebdf770 fec5550 ebdf770 fec5550 ebdf770 | 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 | import pandas as pd
import numpy as np
from sklearn.ensemble import GradientBoostingRegressor, RandomForestRegressor, StackingRegressor
from sklearn.tree import DecisionTreeRegressor
from sklearn.linear_model import Ridge
from sklearn.metrics import mean_squared_error, mean_absolute_error, r2_score, mean_absolute_percentage_error
import joblib
import sys
import io
import os
try:
import matplotlib.pyplot as plt
HAS_MATPLOTLIB = True
except ImportError:
HAS_MATPLOTLIB = False
import warnings
warnings.filterwarnings('ignore')
# Ensure dataset generator can be imported if CSV is missing
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
try:
from generate_real_kecamatan_dataset import generate_dataset
except ImportError:
from scripts.generate_real_kecamatan_dataset import generate_dataset
print("STARTING SPATIAL ENSEMBLE STACKING REGRESSOR TRAINING (AETERNA AI 44 KECAMATAN)...\n")
# ==========================================
# 1. DATA INGESTION (44 KECAMATAN SPATIAL DATASET)
csv_file = "data/synthetic_spatial_training_data_2024_2025.csv"
if not os.path.exists(csv_file):
csv_file = "data/dataset_real_kecamatan_2024_2025.csv"
if not os.path.exists(csv_file) and os.path.exists("waste-prediction-api/data/synthetic_spatial_training_data_2024_2025.csv"):
csv_file = "waste-prediction-api/data/synthetic_spatial_training_data_2024_2025.csv"
elif not os.path.exists(csv_file) and os.path.exists("waste-prediction-api/data/dataset_real_kecamatan_2024_2025.csv"):
csv_file = "waste-prediction-api/data/dataset_real_kecamatan_2024_2025.csv"
if not os.path.exists(csv_file):
print("[Dataset] Dataset tidak ditemukan. Membuat dataset spasial 44 Kecamatan baru...")
df = generate_dataset()
else:
print(f"[Dataset] Loading dataset dari '{csv_file}'...")
df = pd.read_csv(csv_file)
print(f"[Status] Dataset terload: {len(df)} total baris sampel dari 44 Kecamatan (2024-2025).\n")
# Sort chronologically to prevent temporal data leakage
df['Tanggal'] = pd.to_datetime(df['Tanggal'])
df = df.sort_values('Tanggal').reset_index(drop=True)
# ==========================================
# 2. FEATURE ENGINEERING & ENCODING
# ==========================================
print("[Info] Ekstraksi & Enkodasi Fitur Spasial-Temporal...")
# Categorical One-Hot / Target Mapping for Zone_Type
zone_map = {
"Pusat Komersial": 1,
"Permukiman Padat": 2,
"Permukiman Menengah": 3,
"Pariwisata & Olahraga": 4,
"Pesisir & Pelabuhan": 5,
"Industri & Pergudangan": 6,
"Kepulauan": 7
}
df['Zone_Type_Code'] = df['Zone_Type'].map(zone_map).fillna(0)
# Feature matrix for spatial ML model
feature_cols = [
'Population_Jiwa',
'Normal_Avg_Ton',
'Zone_Type_Code',
'Rainfall_mm',
'Rain_Lag_1',
'Is_Weekend',
'Hari_Dalam_Minggu',
'Bulan',
'Is_Mudik',
'Ada_Event',
'Event_Crowd_Headcount'
]
X = df[feature_cols]
y = df['Volume_Sampah_Ton']
# ==========================================
# 3. CHRONOLOGICAL TRAIN-TEST SPLIT
# ==========================================
train_idx = df['Tanggal'] < pd.Timestamp("2025-07-01")
X_train, X_test = X[train_idx], X[~train_idx]
y_train, y_test = y[train_idx], y[~train_idx]
print(f"[Split] Split Data Kronologis: Train={len(X_train)} baris, Test={len(X_test)} baris.")
# ==========================================
# 4. ENSEMBLE STACKING REGRESSOR TRAINING
# ==========================================
print("\n[Train] Melatih Model Stacking Regressor (Decision Tree + Random Forest + GBR)...")
estimators = [
('dt', DecisionTreeRegressor(max_depth=6, random_state=42)),
('rf', RandomForestRegressor(n_estimators=150, max_depth=6, random_state=42, n_jobs=-1)),
('gbr', GradientBoostingRegressor(n_estimators=150, max_depth=5, learning_rate=0.05, random_state=42))
]
best_model = StackingRegressor(
estimators=estimators,
final_estimator=Ridge(alpha=1.0),
cv=3,
n_jobs=-1
)
best_model.fit(X_train, y_train)
pred_test = best_model.predict(X_test)
# Calculate out-of-sample metrics
mae = mean_absolute_error(y_test, pred_test)
rmse = mean_squared_error(y_test, pred_test) ** 0.5
r2 = r2_score(y_test, pred_test)
mape = mean_absolute_percentage_error(y_test, pred_test) * 100
# ==========================================
# 5. PERBANDINGAN METRICS & LAPORAN AUDIT
# ==========================================
print("\n[Metrics] HASIL EVALUASI MODEL STACKING REGRESSOR (OUT-OF-SAMPLE TEST SET):")
print(f"┌─────────────────────────┬──────────────────────┬────────────────────────────────────────┐")
print(f"│ Metric │ Stacking Regressor │ Interpretation │")
print(f"├─────────────────────────┼──────────────────────┼────────────────────────────────────────┤")
print(f"│ Mean Absolute Error │ {mae:16.2f} Ton │ Rata-rata deviasi tebakan vs riil │")
print(f"│ Root Mean Squared Error │ {rmse:16.2f} Ton │ Penalti deviasi ekstrem │")
print(f"│ R-Squared (R² Score) │ {r2*100:15.2f}% │ Varian data riil yang dapat dijelaskan │")
print(f"│ MAPE (Error Persentase) │ {mape:15.2f}% │ Tingkat persentase eror rata-rata │")
print(f"└─────────────────────────┴──────────────────────┴────────────────────────────────────────┘")
# Feature Importance Approximation for Stacking Model
meta_coefs = np.abs(best_model.final_estimator_.coef_)
meta_coefs /= (np.sum(meta_coefs) + 1e-9)
importances = np.zeros(len(feature_cols))
for i, (name, est) in enumerate(best_model.estimators):
fitted_est = best_model.estimators_[i]
if hasattr(fitted_est, 'feature_importances_'):
importances += fitted_est.feature_importances_ * meta_coefs[i]
elif hasattr(fitted_est, 'coef_'):
coefs = np.abs(fitted_est.coef_)
importances += (coefs / (np.sum(coefs) + 1e-9)) * meta_coefs[i]
importances /= (np.sum(importances) + 1e-9)
print("\n[Features] FITUR SPASIAL PALING BERPENGARUH PADA TIMBULAN SAMPAH:")
for name, imp in sorted(zip(feature_cols, importances), key=lambda x: x[1], reverse=True):
print(f" - {name:22s}: {imp*100:5.2f}%")
# ==========================================
# 6. MODEL PERFORMANCE PLOT GENERATION
# ==========================================
if HAS_MATPLOTLIB:
print("\n[Plot] Membuat Visualisasi Scatter Plot Actual vs Predicted...")
plt.figure(figsize=(10, 6))
plt.scatter(y_test, pred_test, alpha=0.4, color='#00f2fe', edgecolors='#0072ff', label='Stacking Regressor Predictions')
# Perfect prediction line (y = x)
min_val = min(y_test.min(), pred_test.min())
max_val = max(y_test.max(), pred_test.max())
plt.plot([min_val, max_val], [min_val, max_val], color='#ff007f', linestyle='--', linewidth=2, label='Perfect Prediction')
plt.title('Stacking Regressor: Actual vs Predicted Waste Volume (DKI Jakarta)', fontsize=14, color='#0f172a', pad=15)
plt.xlabel('Actual Waste Volume (tons)', fontsize=12)
plt.ylabel('Predicted Waste Volume (tons)', fontsize=12)
plt.grid(True, linestyle=':', alpha=0.6)
plt.legend(loc='upper left')
# Dark theme styling adjustments
plt.tight_layout()
# Ensure target directories exist
os.makedirs("frontend", exist_ok=True)
plot_path = "frontend/model_actual_vs_predicted.png"
plt.savefig(plot_path, dpi=150)
plt.close()
print(f"[Plot] Saved performance plot to '{plot_path}'!")
else:
print("\n[Plot] Skipping visualization plot generation because matplotlib is not installed.")
import subprocess
import datetime
from sklearn.metrics import mean_absolute_error as mae_fn, r2_score as r2_fn, mean_absolute_percentage_error as mape_fn
# Get git commit hash if available
try:
git_commit = subprocess.check_output(["git", "rev-parse", "--short", "HEAD"],
stderr=subprocess.DEVNULL).decode().strip()
except Exception:
git_commit = "unknown"
# Baseline model comparison
y_mean = float(y_train.mean())
pred_baseline_mean = np.full(len(y_test), y_mean)
pred_baseline_lastval = np.array([float(y_train.iloc[-1])] * len(y_test))
pred_baseline_rolling = np.full(len(y_test), float(y_train.tail(7).mean()))
baseline_metrics = {
"historical_mean": {
"mae": float(mae_fn(y_test, pred_baseline_mean)),
"r2": float(r2_fn(y_test, pred_baseline_mean)),
"mape": float(mape_fn(y_test, pred_baseline_mean) * 100)
},
"rolling_mean_7d": {
"mae": float(mae_fn(y_test, pred_baseline_rolling)),
"r2": float(r2_fn(y_test, pred_baseline_rolling)),
"mape": float(mape_fn(y_test, pred_baseline_rolling) * 100)
},
"last_value": {
"mae": float(mae_fn(y_test, pred_baseline_lastval)),
"r2": float(r2_fn(y_test, pred_baseline_lastval)),
"mape": float(mape_fn(y_test, pred_baseline_lastval) * 100)
}
}
print("\n[Baseline] PERBANDINGAN MODEL vs BASELINE SEDERHANA (Synthetic Benchmark):")
print(f"{'Model':<30} {'MAE':>10} {'R²':>10} {'MAPE':>10}")
print("-" * 62)
print(f"{'AETERNA Stacking Regressor':<30} {mae:>10.2f} {r2*100:>9.2f}% {mape:>9.2f}%")
for bname, bmet in baseline_metrics.items():
print(f"{bname:<30} {bmet['mae']:>10.2f} {bmet['r2']*100:>9.2f}% {bmet['mape']:>9.2f}%")
print("\n⚠️ NOTE: All metrics above are SYNTHETIC BENCHMARKS — not real-world validation.")
# Save model artifacts
os.makedirs("models", exist_ok=True)
model_file_path = "models/model_sampah_advanced.pkl"
meta_file_path = "models/model_metadata.pkl"
metadata = {
# Model identity
"model_name": "AETERNA Stacking Regressor",
"model_version": "1.0.0",
"model_architecture": "StackingRegressor(DT + RF + GBR → Ridge)",
"trained_at": datetime.datetime.utcnow().isoformat() + "Z",
"git_commit": git_commit,
# Dataset provenance
"training_dataset": "synthetic_spatial_training_data_2024_2025.csv",
"dataset_type": "SYNTHETIC",
"dataset_generator": "scripts/generate_real_kecamatan_dataset.py",
"dataset_note": "Synthetic simulation data — NOT real DLH/SIPSN observations",
# Evaluation
"evaluation_type": "MODE_A_SYNTHETIC_BENCHMARK",
"evaluation_note": "SYNTHETIC BENCHMARK ONLY — not evidence of real-world forecasting accuracy. Trained and evaluated on synthetic simulation data.",
"train_cutoff": "2025-07-01",
"test_period": "2025-07-01 to 2025-12-31",
"split_method": "chronological",
# ML metrics (synthetic benchmark)
"metrics": {
"mae": float(mae),
"rmse": float(rmse),
"r2": float(r2),
"mape": float(mape)
},
# Baseline comparison
"baseline_comparison": baseline_metrics,
# Features
"feature_cols": feature_cols,
"zone_map": zone_map,
"best_params": {
"meta_coefs": meta_coefs.tolist()
}
}
joblib.dump(best_model, model_file_path)
joblib.dump(metadata, meta_file_path)
print(f"\n[Save] SUCCESS! Saved Stacking Regressor model to '{model_file_path}' and metadata to '{meta_file_path}'!")
|