I am talking about something like movie/item recommendation, but it seems that real estate is more tricky. When visiting a web-site and doing some search for RE, the user should be presented with some suggestions. Let's separate the task in two tasks:
a) the user has still not entered any personal info - item based recommendation b) the user has already entered his/hers details such as income, location, etc. - item/user based recommendation
The first thing that comes to my mind for task a) is to start modeling RE features, but using some ranges instead of exact values. For example:
Area in m2
- 40 - 50 we can mark it for "1"
- 50 - 70 is "2"
- etc ...
Price:
- 20 - 30 thousands € will be marked as 1
- 30 - 40 will be 2
- etc ...
Proximity to city center:
- 1 for the RE being within the city center
- 2 for Zone 2 or up to 2/3 kilometers from center
- 3 for Zone 3 or 7 kilometers from center
So having ranges lets us assign a vector to each RE property which will allows us to use: Euclidean distance, Pearson correlation and some nearest neighbor algorithms.
Please comment on my approach or suggest a new one.