mcordts / cityscapesScripts

README and scripts for the Cityscapes Dataset
MIT License
2.19k stars 608 forks source link

Replaced NumPy 1.20 deprecated attributes #174

Closed adriankoering closed 1 year ago

adriankoering commented 1 year ago

With NumPy 1.20 the attributes np.float and np.bool have been deprecated (https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations). This commit replaces the two remaining occurances following NumPy recommendatations: np.float -> float and np.bool -> bool.

mcordts commented 1 year ago

Thx!