cherubicXN / hawp

Holistically-Attracted Wireframe Parsing [TPAMI'23] & [CVPR' 20]
MIT License
291 stars 51 forks source link

Model evaluation missing files #18

Open Leonid-Erlygin opened 3 years ago

Leonid-Erlygin commented 3 years ago

Hi, I was trying to compute F-score of your algorithm, but apparentely there are essential files missing. In example_evaluation.py you import "from evaluation.prmeter import PrecisionRecallMeter", and in prmeter you import:

cherubicXN commented 3 years ago

you may need to enter the directory first and then run the make command for the compilation.

Leonid-Erlygin commented 3 years ago

you may need to enter the directory first and then run the make command for the compilation.

I tried runing make inside ~/hawp/evaluation. But there is no EdgeEval directory. Here is content: evaluation/ ├── compute_prec_recall.py ├── evaluation.py ├── example_evaluation.py ├── example_rasterline.py ├── init.py ├── Makefile └── prmeter.py and Inside MakeFile just all: cd EdgeEval; python setup.py build_ext --inplace; cd .. I do not understand how this makefile can create .EdgeEval and .RasterizeLine packages, when it just builds _C library.

Am I doing something wrong?