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 was archived by the owner on Apr 19, 2026. It is now read-only.
@jaehlee - Hi Jaehoon, thank you for making your code public. I was wondering if there might be a numpy dependency issue. When running the "-- Usage" line, I get a numpy load error that is either:
fid.seek(-min(N, len(magic)), 1) # back-up
TypeError: seek() takes 2 positional arguments but 3 were given
that points to
line 110, in get_grid
grid_data_np = np.load(f)
Since there are already files in ./grid_data, I was assuming this should just run out of the box. Is this correct? If so, do you have a list of package versions that you used when developing this code?
@jaehlee - Hi Jaehoon, thank you for making your code public. I was wondering if there might be a numpy dependency issue. When running the "-- Usage" line, I get a numpy load error that is either:
fid.seek(-N, 1) # back-up
TypeError: seek() takes exactly 2 arguments (3 given)
or
fid.seek(-min(N, len(magic)), 1) # back-up
TypeError: seek() takes 2 positional arguments but 3 were given
that points to
line 110, in get_grid
grid_data_np = np.load(f)
Since there are already files in ./grid_data, I was assuming this should just run out of the box. Is this correct? If so, do you have a list of package versions that you used when developing this code?