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

fix bug of loading_txt(map doesn't return a list or tuple actually) #103

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

cqbu
Copy link

@cqbu cqbu commented Apr 14, 2024

Map function doesn't return a list or a tuple actually, so we need use list or tuple before map.
For example, we need use np.array(list(map(float, data[1:5]))) or np.array(tuple(map(float, data[1:5]))) instead of np.array(map(float, data[1:5])).
And here I use list, you can also use tuple. I find nerfstudio use tuple actually. Anyway, we cannot use map only when we use list as a input.

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

Successfully merging this pull request may close these issues.

1 participant