Question about "YearBuilt" recognition #217
-
I have a question regarding how BRAILS recognizes the "YearBuilt" parameter. Does the built-in ML algorithm only identify the building age (“YearBuilt”) for Berkeley? I ask because I ran the example file for a random Italian town (named Alvito) and the resulting .geojson file only contained building footprints, without any attributes related to “YearBuilt,” “BuildingHeight,” or similar parameters. This made me wonder if the ML algorithm might have been trained exclusively on images of buildings in Berkeley and therefore cannot recognize buildings in other locations. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
Thank you for your interest in BRAILS. The current YearBuilt computer vision model in BRAILS was trained on data from all across the US, so it is expected to give more accurate results for query areas in the US. That said, it generates predictions for anywhere in the world by design. Could you please share the code snippet you used to create the building inventory you referred to? I would like to investigate the issue further by reproducing the problem you described. |
Beta Was this translation helpful? Give feedback.
-
@bacetiner Hi, I was wondering if you've had time to look into this issue. Thanks! |
Beta Was this translation helpful? Give feedback.
Correct,
InventoryGenerator
has built-in utilities for merging AI prediction results into a building inventory.Alternatively, you can achieve this merging through some
pandas
magic. I updated my response above to include these additionalpandas
lines.I hope you find this helpful!