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
{{ message }}
This repository has been archived by the owner on Apr 13, 2021. It is now read-only.
The declaration for save_samples is def save_samples(filename, samples, file_format='int8')
and declaration for load_samples is def load_samples(filename, num_samples=-1, num_skip=0, file_format='piksi')
Because of that, passing minimum number or arguments, if you save a sample it saves in np.int8 format, but when loading, it tries to retrieve that saved sample in piksi format. As a result, returned object is often starkly different from what was saved at first.
The text was updated successfully, but these errors were encountered:
The declaration for
save_samples
isdef save_samples(filename, samples, file_format='int8')
and declaration for
load_samples
isdef load_samples(filename, num_samples=-1, num_skip=0, file_format='piksi')
Because of that, passing minimum number or arguments, if you save a sample it saves in
np.int8
format, but when loading, it tries to retrieve that saved sample inpiksi
format. As a result, returned object is often starkly different from what was saved at first.The text was updated successfully, but these errors were encountered: