Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A bug about bridgedata_raw_to_numpy.py #32

Open
Li-private opened this issue Aug 26, 2024 · 1 comment
Open

A bug about bridgedata_raw_to_numpy.py #32

Li-private opened this issue Aug 26, 2024 · 1 comment

Comments

@Li-private
Copy link

The code on lines 267 and 268 will only save one npy file. There is a lack of a loop.

source code:
with tf.io.gfile.GFile(tf.io.gfile.join(outpath_train, "out.npy"), "wb") as f:

suggestion:
for i in range(len(lst_train)):
with tf.io.gfile.GFile(tf.io.gfile.join(outpath_train, f"out_{i}.npy"), "wb") as f:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@Li-private and others