| { |
| "space_sdk": "docker", |
| "app_host": "0.0.0.0", |
| "app_port": 7860, |
| "model_repo_env": "HF_MODEL_REPO", |
| "model_repo_default": "saranka85/predictive-maintenance-random-forest", |
| "model_filename_env": "HF_MODEL_FILENAME", |
| "model_filename_default": "model.joblib", |
| "optional_token_env": "HF_TOKEN", |
| "prediction_log_dir_env": "PREDICTION_LOG_DIR", |
| "prediction_log_dir_default": "/tmp/prediction_logs", |
| "space_repo_env": "HF_SPACE_REPO", |
| "space_repo_default": "saranka85/predictive-maintenance-engine-space", |
| "target_column": "engine_condition", |
| "raw_input_features": [ |
| "engine_rpm", |
| "lub_oil_pressure", |
| "fuel_pressure", |
| "coolant_pressure", |
| "lub_oil_temp", |
| "coolant_temp" |
| ], |
| "model_features": [ |
| "engine_rpm", |
| "lub_oil_pressure", |
| "fuel_pressure", |
| "coolant_pressure", |
| "lub_oil_temp", |
| "coolant_temp", |
| "temperature_difference", |
| "mean_temperature", |
| "mean_pressure", |
| "pressure_range", |
| "lub_oil_pressure_per_1000_rpm", |
| "fuel_pressure_per_1000_rpm", |
| "rpm_fuel_pressure_interaction" |
| ], |
| "class_label_mapping": { |
| "0": "Requires Maintenance", |
| "1": "Operating Normally" |
| }, |
| "class_label_env_vars": { |
| "ENGINE_CLASS_0_LABEL": "Override display label for engine_condition class 0", |
| "ENGINE_CLASS_1_LABEL": "Override display label for engine_condition class 1" |
| } |
| } |