cuiyb
cuiyb
https://github.com/meetshah1995/pytorch-semseg/blob/81997cd5af36759773a67b11cf148d3876b13a69/ptsemseg/models/__init__.py#L14 this line gets the model name from dict, and use `_get_model_instance` get an instance of the arch you want to use, what's your error?
oh, I get it, maybe you could add `if ... else` in `get_model` function to solve this error,such as; ``` if isinstance(model_dict,str): model = _get_model_instance(model_dict) else: name = model_dict['arch'] model...
@angelamin I noticed that our output data is similar,and I have the same question, have you solved it?
after 11 days,I still cannot solve this issue,I googled but still don't know how,can anyone help me?
@gzblue07 have you solved it? I also meet this problem, but my pcl version is 1.9
@bertinetto thank you very much! I will try it.
I also meet this error when I run "make runtest",and I found opencv results in this error,,you need to make opencv with jpeg,I rebuilt opencv and fixed it. `cd /opencv/build`...
@Bai-YunHan hi, have you solved this? I also want to visualize the visibility map, I use the function `mapping.compute_logodds` to generate the logodds, as the same as the code, and...
@wrencanfly could you provide your environment details?