srihari-humbarwadi / DeepLabV3_Plus-Tensorflow2.0

DeepLabV3+ implemented in TensorFlow2.0
https://arxiv.org/pdf/1802.02611.pdf
168 stars 45 forks source link

cityscapes_dict.pkl doesn't exist #2

Closed karolmajek closed 5 years ago

karolmajek commented 5 years ago

When trying to run inference notebook:

with open('cityscapes_dict.pkl', 'rb') as f:
    id_to_color = pickle.load(f)['color_map']

Error message:

---------------------------------------------------------------------------
FileNotFoundError                         Traceback (most recent call last)
<ipython-input-8-995e3588fde6> in <module>
      1 h, w = 800, 1600
----> 2 with open('cityscapes_dict.pkl', 'rb') as f:
      3     id_to_color = pickle.load(f)['color_map']

FileNotFoundError: [Errno 2] No such file or directory: 'cityscapes_dict.pkl'

Was looking for it in the web, but haven't found it and don't want to do it manually :-)

srihari-humbarwadi commented 5 years ago

latest commit should fix this