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

About how to fix the BUG of g_partition.py #118

Open
xilinlan opened this issue Jan 8, 2024 · 0 comments
Open

About how to fix the BUG of g_partition.py #118

xilinlan opened this issue Jan 8, 2024 · 0 comments

Comments

@xilinlan
Copy link

xilinlan commented Jan 8, 2024

1、
line 8
s_label = 'CelebAMask-HQ-label'
this s_label in g_mask.py generate
2、
line 33
image_list = pd.read_csv('CelebA-HQ-to-CelebA-mapping.txt', delim_whitespace=True, header=None)
the mapping.txt has title header, so just use the header default parameter is ok
the correct use:
image_list = pd.read_csv('CelebA-HQ-to-CelebA-mapping.txt', delim_whitespace=True)
3、
line 38
for idx, x in enumerate(image_list.loc[:, 1]):
it has a error.
The proper way is
for idx, x in enumerate(image_list.loc[:1]):
but it not end
image_list.loc[:1] just has two line, and the content is incorrect
the right way to use is as below:
for idx, x in enumerate(image_list.loc[:, 'orig_idx']):

The above is the problem I encountered during the usage and the solution. If there are any errors, please kindly forgive me.

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

1 participant