Getting error i yolo v3 keras code

Please share the following so we may better assist you:

  1. Screen shot of your error - included

  2. Copy/Paste of your code - it is too long (not my code, it is from the training part of the code for yolo v3 keras code provided by roboflow (the part/cell in google colab that starts with “”"
    Self-contained Python script to train YOLOv3 on your own dataset
    “”")

  3. What you’ve tried so far to debug - as per stack overflow , the part with the word "decode’ was deleted but it is still showing str has no attribute decode

as only 1 photo could be included I am copy pasting first part of the error here-AttributeError Traceback (most recent call last)
in ()
189
190 if name == ‘main’:
→ 191 _main()

4 frames
in _main()
34 else:
35 model = create_model(input_shape, anchors, num_classes,
—> 36 freeze_body=2, weights_path=‘model_data/yolo.h5’) # make sure you know what you freeze
37
38 logging = TensorBoard(log_dir=log_dir)