Machine Learning Algorithms and Explainable Artificial Intelligence for Property Valuation
Abstract
1. Introduction
2. State of Research
3. Methodology
- To improve clarity, this methodology is structured into sequential operational steps, each of which corresponds to a critical phase of model construction and evaluation. In each step, attention was paid not only to the theoretical underpinnings, but also to empirical implementation choices in order to make the approach reproducible and transparent. Moreover, the algorithms’ specific behavior with small datasets is discussed throughout, with practical considerations for scalability and generalization.
- Data Collection and Identification of Real Estate Features. This phase consists in the systematic acquisition of information relevant to the phenomenon under investigation, with the objective of ensuring the quality, completeness, and representativeness of the dataset. Particular attention was devoted to the identification of the most relevant explanatory variables, as well as to the verification of data consistency, the absence of outliers, and the management of potential missing values. Accurate data collection represents a necessary condition for ensuring the reliability of the subsequent modelling and analysis phases.
- Preliminary Feature Analysis and Data Normalization. Before implementing machine learning models, it is essential to conduct the preliminary analysis of features. This process includes the assessment of descriptive statistics, the evaluation of correlations between the independent variables and the target variable, and the identification of potential multicollinearity issues. This analysis helps researchers to select the most informative features, facilitating dimensionality reduction and improving model interpretability. Uninformative or redundant variables are excluded to limit noise and reduce the risk of overfitting, an especially critical concern when working with small datasets.Feature scaling is another fundamental step. Since many machine learning techniques—such as neural networks and distance-based models—are sensitive to the scale of variables, it is important to transform the features so they share comparable scales. Among the most commonly used techniques are standardization (z-score normalization), which transforms data to have zero mean and unit variance, and min-max normalization, which rescales values to a specific range, usually [0, 1]. These transformations not only promote algorithmic stability and faster convergence during training, but also help ensure that each variable contributes appropriately to the model’s learning process. In models such as neural networks, this can also prevent saturation of activation functions, while in k-NN, it ensures that features with larger numerical ranges do not disproportionately affect distance calculations.
- Parameter Tuning and Implementation of ML Algorithms. The proper configuration of machine learning algorithm parameters is fundamental to optimize the predictive performance and minimize the risk of overfitting, especially in contexts characterized by small-sized datasets. Regarding the Multilayer Perceptron (MLP), the critical parameters include the number of hidden layers and neurons per layer, the activation function (e.g., ReLU or Tanh), the learning rate, and the optimization strategy (e.g., Adam or SGD). For the k-Nearest Neighbors (k-NN) algorithm, the choice of the k parameter (number of neighbors considered) is essential, as is the type of distance metric used (e.g., Euclidean or Manhattan). For Random Forest, the most influential parameters include the number of trees in the forest, the maximum depth of the trees, and the maximum number of features considered at each split.Beyond their predictive performance, it is also relevant to consider the structural properties of the models and their behavior in different settings. Random Forest is an ensemble method based on decision trees, generally robust to noise, and relatively easy to tune, but its computational cost increases with the number of trees and the dataset size [54]. The k-Nearest Neighbors (kNN) algorithm, by contrast, is non-parametric and simple, but highly sensitive to the choice of kNN and suffers in scalability, as prediction requires computing distances to all training samples [72]. The Neural Network, while offering greater modeling flexibility, requires careful tuning of multiple hyperparameters (e.g., number of layers, neurons, and learning rate), and is prone to overfitting, especially on small datasets. However, it is the most scalable among the three; when applied to larger datasets, it can be trained efficiently using specialized hardware such as Graphics Processing Units (GPUs), which are designed to handle massive numerical computations in parallel [73]. This allows for neural networks to significantly reduce training time and handle increasingly large data volumes, making them particularly suitable for real-world applications with growing datasets [74].
- Analysis and Validation of Results. The performance evaluation of the algorithms was conducted through the analysis of the main regression metrics, in particular the coefficient of determination (R2), the mean squared error (MSE), and the mean absolute error (MAE). These metrics were estimated according to the following formulations:
- These metrics were calculated both for the training set and through a k-fold cross-validation procedure in order to obtain more reliable estimates of the models’ generalization capability.
- Cross-validation involves partitioning the dataset into k subsets (folds), which are cyclically used for training and validation. This approach makes it possible to assess performance across multiple data splits, reducing the impact of specific data configurations. It also helps to detect potential overfitting phenomena, which become evident when there are significant discrepancies between the metrics computed on the training and validation sets.
- To enhance the transparency of model comparison, all the performance metrics were aggregated and summarized, allowing for the clear evaluation of the strengths and limitations of each algorithm. Quantitative analysis was complemented by model interpretation techniques, discussed in the following sections, which support a deeper understanding of the influence of individual features on the predictions.
- 5.
- Model Explainability and Feature Importance. To enhance the interpretability of the employed machine learning models, analysis was supplemented with techniques from Explainable Artificial Intelligence (XAI).Among these, SHapley Additive exPlanations (SHAP) values were calculated to quantify the marginal impact of each input feature on the model’s predictions. SHAP assigns an importance score to each feature by considering all the possible combinations of features, thus providing a theoretically grounded and locally consistent explanation of the model’s behavior.In addition, a Permutation Feature Importance technique was used to assess how much the prediction error increases when a single feature’s values are randomly shuffled. This disrupts the relationship between that feature and the target, allowing for a direct estimate of its contribution to model performance.These techniques—supported through the case study by empirical examples and visualizations—enable a better understanding of the “black box” nature of complex algorithms. They also support the decision-making process in urban real estate analysis by highlighting which features most influence property values.
4. Case Study
4.1. Data Collection and Identification of Real Estate Features
- Commercial surface (SUR), expressed in square meters;
- The floor level of the residential unit (FLOOR), expressed as a numerical level;
- The state of maintenance (CONS), an ordinal categorical variable with values coded as 1 = “to be renovated”, 3 = “good”, or 5 = “excellent”;
- The presence of an elevator (LIFT), a binary (dummy) variable (1 = present, 0 = absent).
- T1—Travel time from each property to the central railway station, located near the historic center and representing the main urban hub. This rendered the inclusion of a “distance to city center” variable unnecessary, thereby avoiding informational redundancy and multicollinearity issues;
- T2—Travel time to the commercial port;
- T3—Travel time to the main highway entrance (Fratte interchange).
4.2. Preliminary Feature Analysis and Data Normalization
- The variable SUR (commercial surface) exhibits a strong positive correlation with the price (coefficient = 0.841);
- The presence of an elevator (LIFT) is moderately and positively correlated with the price (0.336), indicating that this feature significantly contributes to property value;
- The variable FLOOR shows a weak correlation with the price (0.231), while CONS (state of conservation) presents an almost null correlation (−0.039). Nevertheless, both these characteristics are considered relevant from an appraisal perspective and were therefore retained in analysis;
- The variables T1, T2, and T3—travel times to the railway station, the commercial port, and the main highway entrance, respectively, exhibit moderately negative correlations with price (T1 = −0.549; T2 = −0.127; and T3 = −0.310).
- Moderate correlations were also observed among some of the independent variables, specifically between T2 and T1 (0.466), and between T3 and T2 (0.645). These relationships warrant caution during modeling to avoid multicollinearity issues.
4.3. Parameter Tuning and Implementation of ML Algorithms
4.4. Analysis and Validation of Results
4.5. Model Explainability and Feature Importance
5. Discussion
6. Conclusions
Author Contributions
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Conflicts of Interest
Abbreviations
ANN | Artificial Neural Network |
MLP | Multilayer Perceptron |
K-NN | k-Nearest Neighbors (k-NN) |
RF | Random Forest |
Appendix A
PRICE [EUR] | FORECAST kNN [EUR] | Δ [%] | FORECAST ANN [EUR] | Δ [%] | FORECAST RF [EUR] | Δ [%] |
---|---|---|---|---|---|---|
80,000 | 108,400 | 35.50% | 93,948 | 17.44% | 85,161 | 6.45% |
108,700 | 114,740 | 5.56% | 114,291 | 5.14% | 104,010 | −4.31% |
80,000 | 73,400 | −8.25% | 74,558 | −6.80% | 78,567 | −1.79% |
70,000 | 99,000 | 41.43% | 68,098 | −2.72% | 89,727 | 28.18% |
80,000 | 83,600 | 4.50% | 72,398 | −9.50% | 80,943 | 1.18% |
60,000 | 114,000 | 90.00% | 121,909 | 103.18% | 81,179 | 35.30% |
80,000 | 104,000 | 30.00% | 110,597 | 38.25% | 76,775 | −4.03% |
145,000 | 114,000 | −21.38% | 130,780 | −9.81% | 132,235 | −8.80% |
145,000 | 114,000 | −21.38% | 130,780 | −9.81% | 132,235 | −8.80% |
145,000 | 140,400 | −3.17% | 149,164 | 2.87% | 144,391 | −0.42% |
85,000 | 114,740 | 34.99% | 118,509 | 39.42% | 99,207 | 16.71% |
210,000 | 239,000 | 13.81% | 215,798 | 2.76% | 220,497 | 5.00% |
110,000 | 114,740 | 4.31% | 135,883 | 23.53% | 130,908 | 19.01% |
130,000 | 114,000 | −12.31% | 140,584 | 8.14% | 142,197 | 9.38% |
90,000 | 114,000 | 26.67% | 117,826 | 30.92% | 87,102 | −3.22% |
110,000 | 139,400 | 26.73% | 150,960 | 37.24% | 121,085 | 10.08% |
190,000 | 204,400 | 7.58% | 205,386 | 8.10% | 194,307 | 2.27% |
110,000 | 131,200 | 19.27% | 95,357 | −13.31% | 116,554 | 5.96% |
60,000 | 90,400 | 50.67% | 67,953.9 | 13.26% | 63,920 | 6.53% |
160,000 | 167,000 | 4.38% | 168,224 | 5.14% | 157,929 | −1.29% |
200,000 | 132,600 | −33.70% | 143,976 | −28.01% | 180,599 | −9.70% |
270,000 | 219,000 | −18.89% | 275,874 | 2.18% | 272,889 | 1.07% |
180,000 | 202,200 | 12.33% | 206,213 | 14.56% | 193,001 | 7.22% |
250,000 | 188,000 | −24.80% | 259,065 | 3.63% | 249,730 | −0.11% |
250,000 | 202,200 | −19.12% | 232,110 | −7.16% | 250,650 | 0.26% |
70,000 | 150,400 | 114.86% | 150,457 | 114.94% | 98,869.2 | 41.24% |
110,000 | 105,140 | −4.42% | 111,140 | 1.04% | 100,374 | −8.75% |
150,000 | 140,400 | −6.40% | 151,924 | 1.28% | 151,441 | 0.96% |
130,000 | 179,000 | 37.69% | 146,059 | 12.35% | 126,966 | −2.33% |
60,000 | 90,400 | 50.67% | 67,953.9 | 13.26% | 63,919.6 | 6.53% |
300,000 | 266,000 | −11.33% | 281,678 | −6.11% | 263,758 | −12.08% |
250,000 | 273,000 | 9.20% | 322,411 | 28.96% | 267,973 | 7.19% |
630,000 | 570,000 | −9.52% | 565,441 | −10.25% | 583,548 | −7.37% |
195,000 | 183,000 | −6.15% | 160,885 | −17.49% | 179,937 | −7.72% |
137,000 | 142,200 | 3.80% | 154,629 | 12.87% | 140,712 | 2.71% |
145,000 | 142,200 | −1.93% | 150,055 | 3.49% | 140,091 | −3.39% |
110,000 | 79,000 | −28.18% | 107,878 | −1.93% | 112,020 | 1.84% |
125,000 | 142,200 | 13.76% | 135,305 | 8.24% | 126,165 | 0.93% |
270,000 | 157,000 | −41.85% | 227,086 | −15.89% | 270,670 | 0.25% |
140,000 | 142,200 | 1.57% | 164,891 | 17.78% | 163,739 | 16.96% |
360,000 | 390,000 | 8.33% | 339,014 | −5.83% | 368,093 | 2.25% |
370,000 | 297,600 | −19.57% | 319,229 | −13.72% | 321,956 | −12.98% |
210,000 | 241,400 | 14.95% | 179,669 | −14.44% | 234,027 | 11.44% |
170,000 | 183,000 | 7.65% | 160,885 | −5.36% | 179,937 | 5.85% |
300,000 | 301,000 | 0.33% | 343,257 | 14.42% | 313,243 | 4.41% |
350,000 | 253,000 | −27.71% | 223,853 | −36.04% | 273,276 | −21.92% |
285,000 | 301,000 | 5.61% | 331,194 | 16.21% | 308,260 | 8.16% |
205,000 | 253,000 | 23.41% | 288,726 | 40.84% | 241,015 | 17.57% |
310,000 | 468,000 | 50.97% | 378,547 | 22.11% | 317,115 | 2.30% |
297,000 | 313,400 | 5.52% | 385,094 | 29.66% | 322,606 | 8.62% |
630,000 | 548,000 | −13.02% | 579,595 | −8.00% | 572,921 | −9.06% |
225,000 | 334,000 | 48.44% | 236,428 | 5.08% | 220,256 | −2.11% |
485,000 | 501,000 | 3.30% | 503,263 | 3.77% | 529,233 | 9.12% |
395,000 | 311,000 | −21.27% | 406,059 | 2.80% | 437,196 | 10.68% |
395,000 | 329,400 | −16.61% | 432,239 | 9.43% | 444,044 | 12.42% |
190,000 | 242,400 | 27.58% | 277,559 | 46.08% | 220,896 | 16.26% |
280,000 | 273,000 | −2.50% | 322,411 | 15.15% | 267,973 | −4.30% |
510,000 | 395,000 | −22.55% | 360,804 | −29.25% | 468,166 | −8.20% |
540,000 | 468,000 | −13.33% | 485,700 | −10.06% | 514,953 | −4.64% |
253,000 | 297,600 | 17.63% | 311,723 | 23.21% | 268,299 | 6.05% |
550,000 | 467,000 | −15.09% | 554,914 | 0.89% | 578,320 | 5.15% |
540,000 | 409,400 | −24.19% | 385,101 | −28.69% | 476,620 | −11.74% |
595,000 | 546,000 | −8.24% | 592,184 | −0.47% | 592,950 | −0.34% |
600,000 | 468,000 | −22.00% | 484,904 | −19.18% | 545,309 | −9.12% |
247,000 | 234,400 | −5.10% | 200,373 | −18.88% | 224,812 | −8.98% |
83,000 | 86,800 | 4.58% | 92,811 | 11.82% | 74,813.4 | −9.86% |
245,000 | 202,200 | −17.47% | 275,292 | 12.36% | 308,441 | 25.89% |
310,000 | 278,000 | −10.32% | 286,696 | −7.52% | 294,794 | −4.91% |
440,000 | 346,000 | −21.36% | 367,109 | −16.57% | 434,041 | −1.35% |
210,000 | 208,000 | −0.95% | 194,739 | −7.27% | 218,565 | 4.08% |
255,000 | 239,000 | −6.27% | 243,428 | −4.54% | 272,906 | 7.02% |
430,000 | 294,000 | −31.63% | 279,290 | −35.05% | 369,038 | −14.18% |
430,000 | 365,400 | −15.02% | 316,203 | −26.46% | 410,311 | −4.58% |
130,000 | 147,000 | 13.08% | 109,564 | −15.72% | 141,632 | 8.95% |
400,000 | 370,000 | −7.50% | 361,857 | −9.54% | 425,829 | 6.46% |
130,000 | 147,000 | 13.08% | 101,520 | −21.91% | 137,736 | 5.95% |
480,000 | 468,000 | −2.50% | 399,573 | −16.76% | 442,715 | −7.77% |
410,000 | 399,600 | −2.54% | 347,779 | −15.18% | 373,773 | −8.84% |
620,000 | 494,000 | −20.32% | 530,554 | −14.43% | 529,780 | −14.55% |
200,000 | 200,000 | 0.00% | 218,388 | 9.19% | 176,664 | −11.67% |
75,000 | 85,400 | 13.87% | 82,062.5 | 9.42% | 81,926.1 | 9.23% |
135,000 | 145,200 | 7.56% | 225,320 | 66.90% | 141,406 | 4.75% |
152,000 | 147,200 | −3.16% | 146,660 | −3.51% | 138,750 | −8.72% |
125,000 | 107,800 | −13.76% | 120,831 | −3.34% | 119,518 | −4.39% |
152,000 | 147,200 | −3.16% | 154,788 | 1.83% | 138,559 | −8.84% |
123,000 | 107,800 | −12.36% | 114,077 | −7.25% | 102,653 | −16.54% |
108,000 | 107,800 | −0.19% | 114,077 | 5.63% | 102,653 | −4.95% |
68,000 | 107,800 | 58.53% | 114,077 | 67.76% | 102,653 | 50.96% |
79,000 | 98,600 | 24.81% | 107,588 | 36.19% | 90,856.7 | 15.01% |
175,000 | 154,000 | −12.00% | 168,157 | −3.91% | 163,857 | −6.37% |
86,000 | 123,800 | 43.95% | 96,747.7 | 12.50% | 125,917 | 46.42% |
125,000 | 109,800 | −12.16% | 104,898 | −16.08% | 111,679 | −10.66% |
125,000 | 136,800 | 9.44% | 94,589.4 | −24.33% | 127,295 | 1.84% |
150,000 | 147,200 | −1.87% | 163,353 | 8.90% | 151,596 | 1.06% |
30,000 | 81,600 | 172.00% | 96,067.3 | 220.22% | 72,353.9 | 141.18% |
200,000 | 150,600 | −24.70% | 181,959 | −9.02% | 175,931 | −12.03% |
50,000 | 157,000 | 214.00% | 202,763 | 305.53% | 134,384 | 168.77% |
125,000 | 109,800 | −12.16% | 128,623 | 2.90% | 119,008 | −4.79% |
395,000 | 372,000 | −5.82% | 376,240 | −4.75% | 423,526 | 7.22% |
200,000 | 166,600 | −16.70% | 154,306 | −22.85% | 171,777 | −14.11% |
350,000 | 295,800 | −15.49% | 259,384 | −25.89% | 341,387 | −2.46% |
180,000 | 179,600 | −0.22% | 190,652 | 5.92% | 177,848 | −1.20% |
340,000 | 362,000 | 6.47% | 340,046 | 0.01% | 366,164 | 7.70% |
115,000 | 107,800 | −6.26% | 114,077 | −0.80% | 102,653 | −10.74% |
180,000 | 147,000 | −18.33% | 130,446 | −27.53% | 165,857 | −7.86% |
145,000 | 86,000 | −40.69% | 67,207.2 | −53.65% | 120,231 | −17.08% |
430,000 | 252,000 | −41.40% | 244,341 | −43.18% | 368,123 | −14.39% |
48,000 | 75,600 | 57.50% | 73,468.2 | 53.06% | 69,561.5 | 44.92% |
112,000 | 98,000 | −12.50% | 127,750 | 14.06% | 105,960 | −5.39% |
48,000 | 100,600 | 109.58% | 103,889 | 116.44% | 96,305 | 100.64% |
112,000 | 100,600 | −10.18% | 103,889 | −7.24% | 96,305 | −14.01% |
108,000 | 100,600 | −6.85% | 79,238.1 | −26.63% | 96,606.4 | −10.55% |
290,000 | 249,000 | −14.14% | 232,599 | −19.79% | 262,379 | −9.52% |
265,000 | 278,000 | 4.91% | 284,160 | 7.23% | 291,125 | 9.86% |
130,000 | 170,600 | 31.23% | 122,418 | −5.83% | 133,624 | 2.79% |
175,000 | 228,600 | 30.63% | 149,479 | −14.58% | 166,048 | −5.12% |
440,000 | 303,000 | −31.14% | 372,791 | −15.27% | 402,736 | −8.47% |
260,000 | 249,000 | −4.23% | 257,127 | −1.11% | 262,753 | 1.06% |
180,000 | 230,000 | 27.78% | 225,035 | 25.02% | 196,373 | 9.10% |
400,000 | 252,600 | −36.85% | 345,968 | −13.51% | 400,122 | 0.03% |
365,000 | 388,000 | 6.30% | 319,215 | −12.54% | 376,104 | 3.04% |
230,000 | 239,000 | 3.91% | 215,798 | −6.17% | 220,497 | −4.13% |
190,000 | 183,600 | −3.37% | 149,998 | −21.05% | 178,201 | −6.21% |
365,000 | 490,000 | 34.25% | 595,442 | 63.13% | 402,845 | 10.37% |
128,000 | 183,600 | 43.44% | 155,804 | 21.72% | 141,131 | 10.26% |
165,000 | 156,600 | −5.09% | 167,773 | 1.68% | 164,117 | −0.54% |
510,000 | 471,000 | −7.65% | 451,773 | −11.42% | 489,513 | −4.02% |
240,000 | 164,000 | −31.67% | 213,914 | −10.87% | 234,672 | −2.22% |
265,000 | 259,000 | −2.26% | 308,548 | 16.43% | 296,873 | 12.03% |
295,000 | 277,000 | −6.10% | 271,813 | −7.86% | 284,468 | −3.57% |
370,000 | 349,000 | −5.68% | 341,544 | −7.69% | 384,913 | 4.03% |
190,000 | 212,000 | 11.58% | 202,866 | 6.77% | 188,883 | −0.59% |
195,000 | 184,800 | −5.23% | 232,662 | 19.31% | 208,129 | 6.73% |
318,000 | 277,000 | −12.89% | 293,566 | −7.68% | 285,970 | −10.07% |
310,000 | 211,000 | −31.94% | 224,759 | −27.50% | 252,785 | −18.46% |
155,000 | 212,000 | 36.77% | 202,866 | 30.88% | 188,883 | 21.86% |
287,000 | 245,600 | −14.43% | 288,061 | 0.37% | 281,287 | −1.99% |
205,000 | 162,600 | −20.68% | 173,991 | −15.13% | 173,089 | −15.57% |
280,000 | 297,600 | 6.29% | 274,027 | −2.13% | 269,788 | −3.65% |
235,000 | 213,600 | −9.11% | 244,730 | 4.14% | 253,566 | 7.90% |
185,000 | 183,600 | −0.76% | 168,846 | −8.73% | 180,342 | −2.52% |
340,000 | 390,000 | 14.71% | 324,033 | −4.70% | 341,663 | 0.49% |
300,000 | 313,400 | 4.47% | 372,721 | 24.24% | 320,394 | 6.80% |
355,000 | 380,000 | 7.04% | 324,211 | −8.67% | 352,435 | −0.72% |
360,000 | 492,000 | 36.67% | 604,035 | 67.79% | 410,109 | 13.92% |
475,000 | 367,000 | −22.74% | 296,567 | −37.56% | 375,071 | −21.04% |
510,000 | 382,000 | −25.10% | 405,353 | −20.52% | 443,347 | −13.07% |
155,000 | 172,600 | 11.35% | 186,949 | 20.61% | 174,945 | 12.87% |
250,000 | 269,000 | 7.60% | 203,961 | −18.42% | 220,705 | −11.72% |
385,000 | 313,400 | −18.60% | 398,255 | 3.44% | 388,454 | 0.90% |
235,000 | 320,000 | 36.17% | 306,768 | 30.54% | 264,733 | 12.65% |
265,000 | 333,000 | 25.66% | 284,255 | 7.27% | 274,050 | 3.42% |
290,000 | 284,000 | −2.07% | 276,003 | −4.83% | 306,745 | 5.77% |
320,000 | 259,000 | −19.06% | 253,019 | −20.93% | 288,196 | −9.94% |
270,000 | 237,000 | −12.22% | 287,343 | 6.42% | 302,835 | 12.16% |
330,000 | 308,000 | −6.67% | 273,537 | −17.11% | 333,998 | 1.21% |
400,000 | 343,000 | −14.25% | 366,496 | −8.38% | 371,821 | −7.04% |
72,000 | 155,400 | 115.83% | 171,571 | 138.29% | 119,336 | 65.74% |
315,000 | 311,000 | −1.27% | 332,584 | 5.58% | 343,384 | 9.01% |
220,000 | 202,200 | −8.09% | 215,845 | −1.89% | 235,689 | 7.13% |
180,000 | 205,800 | 14.33% | 189,072 | 5.04% | 183,068 | 1.70% |
200,000 | 271,600 | 35.80% | 228,722 | 14.36% | 225,348 | 12.67% |
185,000 | 198,200 | 7.14% | 180,203 | −2.59% | 191,663 | 3.60% |
211,000 | 202,200 | −4.17% | 193,725 | −8.19% | 209,698 | −0.62% |
205,000 | 192,200 | −6.24% | 165,315 | −19.36% | 179,311 | −12.53% |
100,000 | 121,800 | 21.80% | 122,806 | 22.81% | 104,667 | 4.67% |
150,000 | 139,400 | −7.07% | 187,059 | 24.71% | 158,523 | 5.68% |
138,000 | 156,600 | 13.48% | 171,584 | 24.34% | 167,499 | 21.38% |
230,000 | 204,400 | −11.13% | 235,953 | 2.59% | 210,482 | −8.49% |
245,000 | 210,200 | −14.20% | 250,530 | 2.26% | 243,335 | −0.68% |
162,000 | 158,400 | −2.22% | 160,649 | −0.83% | 169,060 | 4.36% |
215,000 | 202,200 | −5.95% | 193,725 | −9.90% | 209,698 | −2.47% |
170,000 | 177,200 | 4.24% | 147,202 | −13.41% | 164,124 | −3.46% |
155,000 | 184,800 | 19.23% | 209,621 | 35.24% | 173,062 | 11.65% |
148,000 | 183,600 | 24.05% | 149,998 | 1.35% | 178,201 | 20.41% |
93,000 | 105,600 | 13.55% | 101,117 | 8.73% | 103,268 | 11.04% |
198,000 | 204,400 | 3.23% | 217,022 | 9.61% | 199,339 | 0.68% |
155,000 | 167,000 | 7.74% | 129,120 | −16.70% | 143,436 | −7.46% |
210,000 | 209,000 | −0.48% | 180,954 | −13.83% | 194,266 | −7.49% |
180,000 | 146,600 | −18.56% | 200,751 | 11.53% | 172,703 | −4.05% |
185,000 | 197,800 | 6.92% | 167,753 | −9.32% | 194,191 | 4.97% |
219,000 | 197,800 | −9.68% | 167,753 | −23.40% | 194,191 | −11.33% |
250,000 | 251,000 | 0.40% | 283,838 | 13.54% | 255,581 | 2.23% |
255,000 | 278,000 | 9.02% | 287,472 | 12.73% | 269,080 | 5.52% |
103,000 | 153,200 | 48.74% | 87,375.8 | −15.17% | 104,464 | 1.42% |
160,000 | 192,200 | 20.13% | 171,734 | 7.33% | 175,957 | 9.97% |
173,000 | 168,000 | −2.89% | 190,662 | 10.21% | 197,573 | 14.20% |
200,000 | 216,000 | 8.00% | 210,063 | 5.03% | 207,980 | 3.99% |
79,000 | 90,400 | 14.43% | 101,242 | 28.15% | 86,532.3 | 9.53% |
170,000 | 185,600 | 9.18% | 171,829 | 1.08% | 184,808 | 8.71% |
215,000 | 205,800 | −4.28% | 158,143 | −26.45% | 203,172 | −5.50% |
140,000 | 139,400 | −0.43% | 147,353 | 5.25% | 128,503 | −8.21% |
228,000 | 184,800 | −18.95% | 202,459 | −11.20% | 194,297 | −14.78% |
225,000 | 183,600 | −18.40% | 143,773 | −36.10% | 194,221 | −13.68% |
257,000 | 255,000 | −0.78% | 271,941 | 5.81% | 254,217 | −1.08% |
250,000 | 273,000 | 9.20% | 318,855 | 27.54% | 286,832 | 14.73% |
160,000 | 148,400 | −7.25% | 166,747 | 4.22% | 168,562 | 5.35% |
160,000 | 139,400 | −12.88% | 175,116 | 9.45% | 164,855 | 3.03% |
140,000 | 177,200 | 26.57% | 136,236 | −2.69% | 120,739 | −13.76% |
120,000 | 184,800 | 54.00% | 222,355 | 85.30% | 181,361 | 51.13% |
200,000 | 237,000 | 18.50% | 212,267 | 6.13% | 188,809 | −5.60% |
137,000 | 139,400 | 1.75% | 162,321 | 18.48% | 133,924 | −2.25% |
220,000 | 212,000 | −3.64% | 202,866 | −7.79% | 188,883 | −14.14% |
98,000 | 121,800 | 24.29% | 95,713.7 | −2.33% | 108,659 | 10.88% |
226,000 | 196,600 | −13.01% | 276,406 | 22.30% | 264,440 | 17.01% |
267,000 | 308,000 | 15.36% | 266,698 | −0.11% | 298,585 | 11.83% |
107,000 | 132,600 | 23.93% | 112,913 | 5.53% | 131,791 | 23.17% |
178,000 | 158,000 | −11.24% | 161,970 | −9.01% | 183,769 | 3.24% |
207,000 | 171,400 | −17.20% | 175,270 | −15.33% | 206,890 | −0.05% |
225,000 | 205,400 | −8.71% | 135,559 | −39.75% | 190,210 | −15.46% |
References
- Abidoye, R.B.; Chan, A.P.C. Artificial neural network in property valuation: Application framework and research trend. Prop. Manag. 2017, 35, 554–571. [Google Scholar] [CrossRef]
- Rico-Juan, J.R.; de La Paz, P.T. Machine learning with explainability or spatial hedonics tools? An analysis of the asking prices in the housing market in Alicante, Spain. Expert Syst. Appl. 2021, 171, 114590. [Google Scholar] [CrossRef]
- Hefferan, M.J.; Boyd, T. Property taxation and mass appraisal valuations in Australia—Adapting to a new environment. Prop. Manag. 2010, 28, 149–162. [Google Scholar] [CrossRef]
- Muzaffer, C.I. An explainable model for the mass appraisal of residences: The application of tree-based Machine Learning algorithms and interpretation of value determinants. Habitat Int. 2022, 128, 102660. [Google Scholar] [CrossRef]
- Lam, C.H.-L.; Hui, E.C.-M. How does investor sentiment predict the future real estate returns of residential property in Hong Kong? Habitat Int. 2018, 75, 1–11. [Google Scholar] [CrossRef]
- Li, X.; Hui, E.C.M.; Shen, J. The consequences of Chinese outward real estate investment: Evidence from Hong Kong land market. Habitat Int. 2020, 98, 102151. [Google Scholar] [CrossRef]
- Goh, K.C.; Seow, T.W.; Goh, H.H. Challenges of implementing sustainability in Malaysian housing industry. In Proceedings of the International Conference on Sustainable Built Environment for Now and the Future (SBE2013), Hanoi, Vietnam, 26–27 March 2013. [Google Scholar]
- Zhang, B.; Xie, G.; Xia, B.; Zhang, C. The effects of public green spaces on residential property value in Beijing. J. Resour. Ecol. 2012, 2, 243–252. [Google Scholar] [CrossRef]
- RICS. RICS Valuation—Global Standards (January 2024 Edition); Royal Institution of Chartered Surveyors: London, UK, 2024; Available online: https://www.rics.org/profession-standards/rics-standards-and-guidance/sector-standards/valuation-standards/red-book/red-book-global (accessed on 29 April 2025).
- Zhao, Q.; Hastie, T. Causal interpretations of black-box models. J. Bus. Econ. Stat. 2019, 39, 272–281. [Google Scholar] [CrossRef] [PubMed]
- Lorenz, F.; Willwersch, J.; Cajias, M.; Fuerst, F. Interpretable machine learning for real estate market analysis. Real Estate Econ. 2023, 51, 1178–1208. [Google Scholar] [CrossRef]
- Lundberg, S.M.; Lee, S.I. A unified approach to interpreting model predictions. Adv. Neural Inf. Process. Syst. 2017, 30, 1–10. [Google Scholar]
- Court, A.T. Hedonic price indexes with automotive examples. In The Dynamics of Automobile Demand; General Motors Corporation: New York, NY, USA, 1939; pp. 99–117. [Google Scholar]
- Lancaster, K.J. A new approach to consumer theory. J. Political Econ. 1966, 74, 132–157. [Google Scholar] [CrossRef]
- Rosen, S. Hedonic prices and implicit markets: Product differentiation in pure competition. J. Political Econ. 1974, 82, 34–55. [Google Scholar] [CrossRef]
- Sheppard, S. Hedonic analysis of housing markets. In Handbook of Regional and Urban Economics; Volume 3: Applied Urban Economics; Cheshire, P., Mills, E.S., Eds.; Elsevier: Amsterdam, The Netherlands, 1999; pp. 1595–1635. [Google Scholar]
- Malpezzi, S. Hedonic pricing models: A selective and applied review. In Housing Economics and Public Policy; O’Sullivan, T., Gibb, K., Eds.; Blackwell Science Ltd.: Oxford, UK, 2002; pp. 67–89. [Google Scholar]
- Sirmans, S.; Macpherson, D.; Zietz, E. The composition of hedonic pricing models. J. Real Estate Lit. 2005, 13, 1–44. [Google Scholar] [CrossRef]
- Dubin, R.A. Estimation of regression coefficients in the presence of spatially autocorrelated error terms. Rev. Econ. Stat. 1988, 70, 466–474. [Google Scholar] [CrossRef]
- Maselli, G.; Nesticò, A.; Sica, S.I. Artificial neural networks and impact of the environmental quality on urban real estate values. AIP Conf. Proc. 2024, 2928, 140007. [Google Scholar] [CrossRef]
- Des Rosiers, F.; Dubé, J.; Thériault, M. Do peer effects shape property values? J. Prop. Invest. Financ. 2011, 29, 510–528. [Google Scholar] [CrossRef]
- Haider, M.; Miller, E.J. Effects of transportation infrastructure and location on residential real estate values: Application of spatial autoregressive techniques. Transp. Res. Rec. 2000, 1722, 1–8. [Google Scholar] [CrossRef]
- Stamou, M.; Mimis, A.; Rovolis, A. House price determinants in Athens: A spatial econometric approach. J. Prop. Res. 2017, 34, 269–284. [Google Scholar] [CrossRef]
- Ki, C.; Jayantha, W. The effects of urban redevelopment on neighbourhood housing prices. Int. J. Urban Sci. 2010, 14, 276–294. [Google Scholar] [CrossRef]
- Dumm, R.E.; Sirmans, G.S.; Smersh, G.T. Price variation in waterfront properties over the economic cycle. J. Real Estate Res. 2016, 38, 1–26. [Google Scholar] [CrossRef]
- Rouwendal, J.; Levkovich, O.; van Marwijk, R. Estimating the value of proximity to water, when ceteris really is paribus. Real Estate Econ. 2017, 45, 829–860. [Google Scholar] [CrossRef]
- Jauregui, A.; Allen, M.T.; Weeks, H.S. A spatial analysis of the impact of float distance on the values of canal-front houses. J. Real Estate Res. 2019, 41, 285–318. [Google Scholar] [CrossRef]
- Conway, D.; Li, C.Q.; Wolch, J.; Kahle, C.; Jerrett, M. A spatial autocorrelation approach for examining the effects of urban greenspace on residential property values. J. Real Estate Financ. Econ. 2010, 41, 150–169. [Google Scholar] [CrossRef]
- Fernández-Avilés, G.; Minguez, R.; Montero, J.-M. Geostatistical air pollution indexes in spatial hedonic models: The case of Madrid, Spain. J. Real Estate Res. 2012, 34, 243–274. [Google Scholar] [CrossRef]
- Maselli, G.; Esposito, V.; Bencardino, M.; Gabrielli, L.; Nesticò, A. An Artificial Neural Network Based Model for Urban Residential Property Price Forecasting. In Networks, Markets & People; Calabrò, F., Madureira, L., Morabito, F.C., Piñeira Mantiñán, M.J., Eds.; NMP 2024, Lecture Notes in Networks and Systems; Springer: Cham, Switzerland, 2024; Volume 1186. [Google Scholar] [CrossRef]
- Jim, C.Y.; Chen, W.Y. External effects of neighbourhood parks and landscape elements on high-rise residential value. Land Use Policy 2010, 27, 662–670. [Google Scholar] [CrossRef]
- Chiarazzo, V.; dell’Olio, L.; Ibeas, A.; Ottomanelli, M. Modeling the effects of environmental impacts and accessibility on real estate prices in industrial cities. Procedia Soc. Behav. Sci. 2014, 111, 460–469. [Google Scholar] [CrossRef]
- Nesticò, A.; La Marca, M. Urban real estate values and ecosystem disservices: An estimate model based on regression analysis. Sustainability 2020, 12, 6304. [Google Scholar] [CrossRef]
- Zhang, L.; Zheng, H. Public and Private Provision of Clean Air: Evidence from Housing Prices and Air Quality in China. SSRN, 8 November 2019. Available online: https://ssrn.com/abstract=3214297 (accessed on 20 March 2025). [CrossRef]
- Hoen, B.; Brown, J.P.; Jackson, T.; Thayer, M.A.; Wiser, R.; Cappers, P. Spatial hedonic analysis of the effects of US wind energy facilities on surrounding property values. J. Real Estate Financ. Econ. 2015, 51, 22–51. [Google Scholar] [CrossRef]
- Hoen, B.; Atkinson-Palombo, C. Wind turbines, amenities and disamenities: A study of home value impacts in densely populated Massachusetts. J. Real Estate Res. 2016, 38, 473–504. [Google Scholar] [CrossRef]
- Wyman, D.; Mothorpe, C. The pricing of power lines: A geospatial approach to measuring residential property values. J. Real Estate Res. 2018, 40, 121–154. [Google Scholar] [CrossRef]
- Chernobai, E.; Reibel, M.; Carney, M. Nonlinear spatial and temporal effects of highway construction on house prices. J. Real Estate Financ. Econ. 2011, 42, 348–370. [Google Scholar] [CrossRef]
- Li, T. The value of access to rail transit in a congested city: Evidence from housing prices in Beijing. Real Estate Econ. 2020, 48, 556–598. [Google Scholar] [CrossRef]
- Chin, S.; Kahn, M.E.; Moon, H.R. Estimating the gains from new rail transit investment: A machine learning tree approach. Real Estate Econ. 2020, 48, 886–914. [Google Scholar] [CrossRef]
- Chakrabarti, S.; Kushari, T.; Mazumder, T. Does transportation network centrality determine housing price? J. Transp. Geogr. 2022, 103, 103397. [Google Scholar] [CrossRef]
- Bilgilioğlu, S.S.; Yılmaz, H.M. Comparison of different machine learning models for mass appraisal of real estate. Surv. Rev. 2021, 55, 32–43. [Google Scholar] [CrossRef]
- Pérez-Rave, J.I.; Correa-Morales, J.C.; González-Echavarría, F. A machine learning approach to big data regression analysis of real estate prices for inferential and predictive purposes. J. Prop. Res. 2019, 36, 59–96. [Google Scholar] [CrossRef]
- Xu, X.; Zhang, Y. House price forecasting with neural networks. Intell. Syst. Appl. 2021, 12, 200052. [Google Scholar] [CrossRef]
- Chollet, F. Deep Learning with Python; Simon and Schuster: New York, NY, USA, 2021. [Google Scholar]
- Sagi, A.; Gal, A.; Czamanski, D.; Broitman, D. Uncovering the shape of neighborhoods: Harnessing data analytics for a smart governance of urban areas. J. Urban Manag. 2022, 11, 178–187. [Google Scholar] [CrossRef]
- Rampini, L.; Cecconi, F.R. Artificial intelligence algorithms to predict Italian real estate market prices. J. Prop. Invest. Financ. 2021, 40, 588–611. [Google Scholar] [CrossRef]
- Ho, W.K.; Tang, B.-S.; Wong, S.W. Predicting property prices with machine learning algorithms. J. Prop. Res. 2021, 38, 48–70. [Google Scholar] [CrossRef]
- Karasu, S.; Altan, A.; Saraç, Z.; Hacıoğlu, R. Estimation of fast varied wind speed based on NARX neural network by using curve fitting. Int. J. Energy Appl. Technol. 2017, 4, 137–146. [Google Scholar]
- Karasu, S.; Altan, A.; Saraç, Z.; Hacıoğlu, R. Prediction of wind speed with non-linear autoregressive (NAR) neural networks. In Proceedings of the 2017 25th Signal Processing and Communications Applications Conference (SIU), Antalya, Turkey, 15–18 May 2017; IEEE: Çanakkale, Turkey, 2017; pp. 1–4. [Google Scholar]
- Wang, T.; Yang, J. Nonlinearity and intraday efficiency tests on energy futures markets. Energy Econ. 2010, 32, 496–503. [Google Scholar] [CrossRef]
- Wegener, C.; von Spreckelsen, C.; Basse, T.; von Mettenheim, H.-J. Forecasting government bond yields with neural networks considering cointegration. J. Forecast. 2016, 35, 86–92. [Google Scholar] [CrossRef]
- Friedman, J.H. Greedy function approximation: A gradient boosting machine. Ann. Stat. 2001, 29, 1189–1232. [Google Scholar] [CrossRef]
- Breiman, L. Random Forests. Mach. Learn. 2001, 45, 5–32. [Google Scholar] [CrossRef]
- Smola, A.J.; Schölkopf, B. A tutorial on support vector regression. Stat. Comput. 2004, 14, 199–222. [Google Scholar] [CrossRef]
- Yoo, S.; Im, J.; Wagner, J.E. Variable selection for hedonic model using machine learning approaches: A case study in Onondaga County, NY. Landsc. Urban Plan. 2012, 107, 293–306. [Google Scholar] [CrossRef]
- Antipov, E.A.; Pokryshevskaya, E.B. Mass appraisal of residential apartments: An application of random forest for valuation and a CART-based approach for model diagnostics. Expert Syst. Appl. 2012, 39, 1772–1778. [Google Scholar] [CrossRef]
- Yao, Y.; Zhang, J.; Hong, Y.; Liang, H.; He, J. Mapping fine-scale urban housing prices by fusing remotely sensed imagery and social media data. Trans. GIS 2018, 22, 561–591. [Google Scholar] [CrossRef]
- Lam, K.C.; Yu, C.Y.; Lam, C.K. Support vector machine and entropy based decision support system for property valuation. J. Prop. Res. 2009, 26, 213–233. [Google Scholar] [CrossRef]
- Kontrimas, V.; Verikas, A. The mass appraisal of the real estate by computational intelligence. Appl. Soft Comput. 2011, 11, 443–448. [Google Scholar] [CrossRef]
- van Wezel, M.; Kagie, M.M.; Potharst, R.R. Boosting the Accuracy of Hedonic Pricing Models; Econometric Institute, Erasmus University Rotterdam: Rotterdam, The Netherlands, 2005; Available online: http://hdl.handle.net/1765/7145 (accessed on 15 April 2025).
- Kok, N.; Koponen, E.-L.; Martínez-Barbosa, C.A. Big data in real estate? From manual appraisal to automated valuation. J. Portf. Manag. 2017, 43, 202–211. [Google Scholar] [CrossRef]
- Zurada, J.; Levitan, A.; Guan, J. A comparison of regression and artificial intelligence methods in a mass appraisal context. J. Real Estate Res. 2011, 33, 349–367. [Google Scholar] [CrossRef]
- Mayer, M.; Bourassa, S.C.; Hoesli, M.; Scognamiglio, D. Estimation and updating methods for hedonic valuation. J. Eur. Real Estate Res. 2019, 12, 134–150. [Google Scholar] [CrossRef]
- Cajias, M.; Willwersch, J.; Lorenz, F.; Schäfers, W. Rental pricing of residential market and portfolio data—A hedonic machine learning approach. Real Estate Financ. 2021, 38, 1–17. [Google Scholar]
- McCluskey, W.J.; Deddis, W.G.; Lamont, I.G.; Borst, R.A. Mass Appraisal for Property Taxation: An International Review of Valuation Methods. J. Prop. Tax Assess. Adm. 2013, 10, 5–31. [Google Scholar]
- Salih, A.; Raisi-Estabragh, Z.; Boscolo Galazzo, I.; Radeva, P.; Petersen, S.E.; Menegaz, G.; Lekadir, K. A perspective on explainable artificial intelligence methods: SHAP and LIME. Adv. Intell. Syst. 2025, 7, 2200304. [Google Scholar] [CrossRef]
- Ghalebikesabi, S.; Ter-Minassian, L.; DiazOrdaz, K.; Holmes, C.C. On locality of local explanation models. In Advances in Neural Information Processing Systems 34; Ranzato, M., Beygelzimer, A., Dauphin, Y., Liang, P.S., Vaughan, J.W., Eds.; Curran Associates, Inc.: Red Hook, NY, USA, 2021; pp. 18395–18407. [Google Scholar]
- Doumard, E.; Aligon, J.; Escriva, E.; Excoffier, J.-B.; Monsarrat, P.; Soule-Dupuy, C. A comparative study of additive local explanation methods based on feature influences. In Proceedings of the 24th International Workshop on Design, Optimization, Languages and Analytical Processing of Big Data (DOLAP 2022), Edinburgh, UK, 29 March 2022; Hal Archives: Lyon, France, 2022; pp. 31–40. [Google Scholar]
- Amparore, E.; Perotti, A.; Bajardi, P. To trust or not to trust an explanation: Using LEAF to evaluate local linear XAI methods. PeerJ Comput. Sci. 2021, 7, e479. [Google Scholar] [CrossRef] [PubMed]
- Hinton, G.E. Connectionist Learning Procedures. Artif. Intell. 1990, 40, 185–234. [Google Scholar] [CrossRef]
- Cover, T.M.; Hart, P.E. Nearest Neighbor Pattern Classification. IEEE Trans. Inf. Theory 1967, 13, 21–27. [Google Scholar] [CrossRef]
- Raina, R.; Madhavan, A.; Ng, A.Y. Large-scale deep unsupervised learning using graphics processors. In Proceedings of the 26th International Conference on Machine Learning (ICML), Montreal, QC, Canada, 14–18 June 2009; pp. 873–880. [Google Scholar]
- LeCun, Y.; Bengio, Y.; Hinton, G. Deep Learning. Nature 2015, 521, 436–444. [Google Scholar] [CrossRef] [PubMed]
- Han, J.; Kamber, M.; Pei, J. Data Mining: Concepts and Techniques, 3rd ed.; Morgan Kaufmann: San Francisco, CA, USA, 2011. [Google Scholar]
- Goodfellow, I.; Bengio, Y.; Courville, A. Deep Learning; MIT Press: Cambridge, MA, USA, 2016. [Google Scholar]
- James, G.; Witten, D.; Hastie, T.; Tibshirani, R. An Introduction to Statistical Learning: With Applications in R; Springer: New York, NY, USA, 2013. [Google Scholar]
- Kuhn, M.; Johnson, K. Applied Predictive Modeling; Springer: New York, NY, USA, 2013. [Google Scholar]
- Hastie, T.; Tibshirani, R.; Friedman, J. The Elements of Statistical Learning: Data Mining, Inference, and Prediction, 2nd ed.; Springer: New York, NY, USA, 2009. [Google Scholar]
Unit | Min | Max | Mean | Median | Std. Dev | |
---|---|---|---|---|---|---|
Price | EUR | 30,000 | 630,000 | 227,074.8 | 200,000 | 127,178.1 |
SUP | m2 | 34 | 265 | 96.2 | 90 | 42 |
FLOOR | Numeric | 1 | 5 | 3.13 | 3 | 1.17 |
CONS | Categorial | 1 | 5 | 3.1 | 3 | 1.32 |
LIFT | Binary | 0 | 1 | 0.64 | 1 | 0.48 |
T1 | Min | 0.99 | 8 | 4.25 | 4.26 | 1.59 |
T2 | Min | 0 | 12 | 5.31 | 5.69 | 2.36 |
T3 | Min | 0 | 9 | 4.27 | 3.88 | 1.96 |
T4 | Min | 0 | 15.87 | 7.83 | 7.71 | 5.24 |
PRICE | FLOOR | SUR | CONS | LIFT | T1 | T2 | T3 | |
---|---|---|---|---|---|---|---|---|
PRICE | 1 | |||||||
FLOOR | 0.231 | 1 | ||||||
SUR | 0.841 | 0.288 | 1 | |||||
CONS | −0.039 | −0.070 | −0.120 | 1 | ||||
LIFT | 0.336 | −0.051 | 0.297 | −0.172 | 1 | |||
T1 | −0.549 | −0.066 | −0.320 | 0.084 | −0.319 | 1 | ||
T2 | −0.127 | −0.0135 | −0.0256 | −0.1502 | 0.112 | 0.466 | 1 | |
T3 | −0.310 | −0.123 | −0.242 | 0.178 | −0.398 | 0.645 | 0.053 | 1 |
Modello | MSE | RMSE | MAE | MAPE | R2 |
---|---|---|---|---|---|
Neural Network | 3,895,856,471.23 | 62,416.80 | 41,878.88 | 0.223 | 0.758 |
kNN | 4,588,617,470.48 | 67,739.34 | 46,966.86 | 0.244 | 0.715 |
Random Forest | 254,891,654.44 | 50,486.79 | 36,704.61 | 0.205 | 0.842 |
Modello | MSE | RMSE | MAE | MAPE | R2 |
---|---|---|---|---|---|
Neural Network | 2,913,678,360.01 | 53,978.499 | 36,496.218 | 0.197 | 0.819 |
kNN | 2,529,919,601.91 | 50,298.31 | 36,031.333 | 0.191 | 0.843 |
Random Forest | 700,706,450.35 | 26,470.86 | 19,381.34 | 0.110 | 0.956 |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2025 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Maselli, G.; Nesticò, A. Machine Learning Algorithms and Explainable Artificial Intelligence for Property Valuation. Real Estate 2025, 2, 12. https://doi.org/10.3390/realestate2030012
Maselli G, Nesticò A. Machine Learning Algorithms and Explainable Artificial Intelligence for Property Valuation. Real Estate. 2025; 2(3):12. https://doi.org/10.3390/realestate2030012
Chicago/Turabian StyleMaselli, Gabriella, and Antonio Nesticò. 2025. "Machine Learning Algorithms and Explainable Artificial Intelligence for Property Valuation" Real Estate 2, no. 3: 12. https://doi.org/10.3390/realestate2030012
APA StyleMaselli, G., & Nesticò, A. (2025). Machine Learning Algorithms and Explainable Artificial Intelligence for Property Valuation. Real Estate, 2(3), 12. https://doi.org/10.3390/realestate2030012