Skip to content

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

Open
cqbu wants to merge 1 commit into
SuLvXiangXin:mainfrom
cqbu:main
Open

fix bug of loading_txt(map doesn't return a list or tuple actually)#103
cqbu wants to merge 1 commit into
SuLvXiangXin:mainfrom
cqbu:main

Conversation

@cqbu

@cqbu cqbu commented Apr 14, 2024

Copy link
Copy Markdown

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