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
External programs that need access to the volumes in .pt (for external map to map distances), would need to have pytorch as a dependency.
There are a few options
leave as is, and require pytorch to be installed to parse these files
replace with .npz format, or .pkl
see if .pt can be read it without pytorch (e.g. read in as pickle or some other seralized reader). This may require saving the .pt file in a special way (serlize it with some encoding?)
The text was updated successfully, but these errors were encountered:
If you really think this is necessary, you could simply do np.save with allow_pickle=True. We are saving dictionaries, so this should work. The only issue is that when you load you have to do np.load with allow_pickle=True, and then do a np.ndarray.tolist() transform.
External programs that need access to the volumes in .pt (for external map to map distances), would need to have pytorch as a dependency.
There are a few options
The text was updated successfully, but these errors were encountered: