BIM2SIM / bim2sim

A python tool to create simulation models for different domains based on BIM IFC models.
https://bim2sim.github.io/bim2sim/
GNU Lesser General Public License v3.0
44 stars 8 forks source link

better string matching #227

Open DaJansenGit opened 2 years ago

DaJansenGit commented 2 years ago

Currently we use predifined matching dicts and regular expressions to find matching

The robustness of the code might be improved by using existing implementations like: RapidFuzz or fuzzywuzzy

We might also have a look into this paper thanks @veronikarichter and maybe also look at [this paper]((https://www.sciencedirect.com/science/article/pii/S0926580516300656?via%3Dihub) (or maybe you find some more papers if you do some more research in this field)

DaJansenGit commented 2 years ago

created branch 224-better-string-matching-and-string-matching to address this issue