Oliver K. Ernst
Oliver K. Ernst
Same problem!
Same question
Thanks for the response, but it did **not** resolve the issue: - `np.random.rand(20)` returns: ``` array([0.98275058, 0.94422631, 0.59813509, 0.34685564, 0.47213665, 0.22066501, 0.19305295, 0.9799085 , 0.21979906, 0.24839575, 0.18017815, 0.43620391, 0.02622439, 0.85212202,...
@TobyRoseman can you re-open this issue? Thanks
I'm on numpy `1.19.5`
First: thanks for all your help, I really appreciate it. Somehow, we're still getting different results, even after I updated numpy to `1.20.3` (which looks to be the [latest](https://pypi.org/project/numpy/)) and...
I still ran into this 2 years later. The arguments in the config file that work for me are: ``` swift_build_tool: "xcodebuild" build_tool_arguments: - "-scheme" - "MyScheme" - "-destination" -...
I've found the same behavior: docker desktop only uses the desktop-linux context
Not sure if it is related, but in other detectors like deepsort, there is also mismatch between the length of `class_ids` and `bbox_xyxy_list,ids,scores` in `bbox_xyxy_list, ids, scores, class_ids = bbox_details`
Here is a very simple test: ``` bbox_xyxy_list, ids, scores, class_ids = bbox_details assert len(bbox_xyxy_list) == len(ids) == len(class_ids) == len(scores) ``` and here are the results for different trackers...