This Hugging Face Space hosts a FastAPI application that uses a pre-trained Multi-layer Perceptron (MLP) Regressor to predict urban accessibility scores. The model and its associated imputer are loaded directly from the Hugging Face Hub.
1{
2 "perc_ASF_Euclidean": 0.6,
3 "perc_Built_up_Area": 0.7,
4 "perc_ASF_Network": 0.55,
5 "perc_ASFS_from_Buffer_Distance_of_BS": 0.65,
6 "Overall_Accessibility_Score": 0.62
7}
(Note: The 'Overall_Accessibility_Score' is the target, but for prediction, you would typically provide values for the features and the model predicts the score. The app.py expects individual feature values.)