Abstract:In this paper, we introduce ST-RAP, a novel Spatio-Temporal framework for Real estate APpraisal. ST-RAP employs a hierarchical architecture with a heterogeneous graph neural network to encapsulate temporal dynamics and spatial relationships simultaneously. Through comprehensive experiments on a large-scale real estate dataset, ST-RAP outperforms previous methods, demonstrating the significant benefits of integrating spatial and temporal aspects in real estate appraisal. Our code and dataset are available at <a class="link-external link-https" href="https://github.com/dojeon-ai/STRAP" rel="external noopener nofollow">this https URL</a>.
What problem does this paper attempt to address?
The problem that this paper attempts to solve is the inaccuracy in real estate appraisal. Specifically, traditional real estate appraisal methods usually rely on simple machine - learning models (such as linear regression, support vector machines, etc.). Although these methods can use some basic attributes (such as area, age, location) for prediction, they often overlook complex spatio - temporal relationships. In particular:
1. **Spatial relationships**: Traditional methods have difficulty capturing the spatial interaction relationships between properties, for example, the mutual influence between different properties within the same community.
2. **Temporal dynamics**: Many existing methods fail to fully consider the dynamic changes of housing prices, that is, the influence of market trends, economic policies, and community development on housing prices over time.
These problems may lead to inaccurate appraisal results, which in turn may cause serious financial losses or government budget deficits, as shown in the 2008 sub - prime mortgage crisis.
To solve the above problems, the author proposes ST - RAP (Spatio - Temporal Real Estate Appraisal Platform), which is a new framework that combines temporal and spatial information. ST - RAP improves the accuracy of real estate appraisal in the following ways:
- **Temporal model**: Use recurrent neural networks (such as GRU) to capture the temporal trends of transaction prices.
- **Spatial model**: Adopt heterogeneous graph neural networks (HGNN) to model the spatial relationships between properties and surrounding facilities (such as schools, hospitals, transportation stations).
- **Integrated model**: Combine the temporal model and the spatial model to form a hierarchical architecture, thereby more comprehensively reflecting the complexity and dynamic changes of the real estate market.
Through experimental verification on large - scale real - world datasets, ST - RAP significantly outperforms previous methods, demonstrating the importance of integrating spatio - temporal factors for improving the accuracy of real estate appraisal.
### Summary of Mathematical Formulas
1. **Representation of Transaction Events**:
\[
e_{i,t}=\{e_{f,i,t}, p_{i,t}\}
\]
where \(e_{f,i,t}\in\mathbb{R}^{d_e}\) is the transaction feature vector and \(p_{i,t}\in\mathbb{R}\) is the price.
2. **Representation of Residents**:
\[
r_i = \{r_{f,i}, h_{i,1:T_i}\}
\]
where \(r_{f,i}\in\mathbb{R}^{d_r}\) is the resident feature vector and \(h_{i,1:T_i}=[e_{i,1}, e_{i,2},\ldots, e_{i,T_i}]\) is the transaction history sequence.
3. **Connected Entities**:
\[
R_i=\{r_v|r_v\text{ is connected to }r_i\}
\]
\[
A_i=\{a_v|a_v\text{ is connected to }r_i\}
\]
\[
S_i=\{s_v|s_v\text{ is connected to }r_i\}
\]
4. **Prediction Target**:
\[
\hat{p}_{i,t + 1}=f_\theta(e_{f,i,t+1}, r_{i,1:t}, R_i, A_i, S_i)
\]
5. **Loss Function**:
\[
L=\frac{1}{N_rT_i}\sum_{i = 1}^{N_r}\sum_{t = 1}^{T_i}|p_{i,t}-\hat{p}_{i,t}|
\]
Through these methods, ST - RAP can predict real estate prices more accurately, thereby providing more reliable support for financial decision - making.