-
Notifications
You must be signed in to change notification settings - Fork 16
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
Confused about dataset #31
Comments
Hi @chenj02 , thank your for your interest in our work. StyleShot follows the self-supervised training paradigm, which means reference image-style image-ground truth are processed from the same image input. |
oh! Thank you for quick reply! I understand it! I have one more question: will the StyleGallery be fully organized and open-sourced? |
Hi, we have released the JSON file and dataset tutorial of StyleGallery. |
Thanks very much! |
The URL about [WIKIART (https://huggingface.co/datasets/huggan/wikiart) is used to download the dataset in parquet format, do you provide the code to convert it to the PNG or JPG format as you use? |
Just read the images sequentially from the .parquet file and save them. |
Thanks for your quick reply. Is the image indexed starting from 00000.jpg or 00001.jpg? |
00000.jpg |
Here is my load script: class MyDataset(torch.utils.data.Dataset):
|
When I use the "os.listdir(self.path)", I get the sequence starting from train-00067-of-00072.parquet instead of train-00000-of-00072.parquet. So do you begin to extract images from train-00067-of-00072.parquet? |
I am start from 00000 to 00072. You might need to sorted. |
Great work! But I'm a litle confused about training data. It seems that StyleShot need data like, content-style-stylized image, but in the data tutorial I didn't see this preparation step? Can you explain more clearly? Thanks!
The text was updated successfully, but these errors were encountered: