Yonder Hackathon 2022

ROS Cost Prediction

What do we have?

  • We have data about buildings from ROS

  • We know their estimated value from the past 5 years

  • We have information about their municipality, their street, their squared meter surface, what type of building, what state is the building in, and most importantly, how much did it cost in a given year

What do we want?

Predict how much does a building with a given configuration cost in the current year (2022).

How do we do this?

How does a computer do this?

if (surface > 50) {
    if (city == 'Iasi') {
        if (street == "Sf. Lazar") {
        	return 250000;
        }
    }
}

How does a computer do this (efficiently)?

Machine Learning

Made with Slides.com