You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Frame object from dataset_pb2.open_dataset in the tutorial.ipynb is unable to process the bytearray of the tutorial dataset frames downloaded for the tutorial purposes and throws an error saying that the ParseFromString method expects a bytes and not bytearray object. The error message is posted below -
The text was updated successfully, but these errors were encountered:
joelkny97
changed the title
ParseFromString() expects bytes and not bytesarray object
ParseFromString() expects bytes and not bytearray object
Nov 15, 2024
The Frame object from dataset_pb2.open_dataset in the tutorial.ipynb is unable to process the bytearray of the tutorial dataset frames downloaded for the tutorial purposes and throws an error saying that the ParseFromString method expects a bytes and not bytearray object. The error message is posted below -
ERROR -
6 frame = open_dataset.Frame()
----> 7 frame.ParseFromString(bytearray(data.numpy()))
8 break
9
TypeError: expected bytes, bytearray found
The text was updated successfully, but these errors were encountered: