-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
add custom dataset and instruction for training on a custom dataset #54
Conversation
Big fan of this. Definitely, an advocate that this should be merged. @rom1504 only thing I'm wondering is where you set the # of epochs? Kinda going crazy looking for it. |
@ChristianFJung Hi, the cli is passing arguments to pytorch lightning Trainer class, so you can check them out there https://pytorch-lightning.readthedocs.io/en/stable/api/pytorch_lightning.trainer.trainer.html#pytorch_lightning.trainer.trainer.Trainer Edit: actually I do not recommend using 16bit, it collaspses to NaN after 20 epochs and then it's non recoverable |
Hi! |
Thanks, that's awesome! 🚀 |
@rom1504 what's the simplest way to sample a custom model like this? |
@ChristianFJung there are various ways:
The last way is the quickest to setup, other ways are more powerful but require to train other models. |
how to train transformer |
Thank you, can you share the config file to train an unconditional transformer on the Imagenet ? I don't know if there is anything wrong with my config file. report in the #104 |
where to set the f value for the custom data training? |
I have the same question, have you knew it? |
Hi,
I created a custom dataset loader taking as input jpg files in a folder.
I think this makes it easy for people discovering this repo to train on a custom dataset.
Tell me what you think.
This was useful for me to start training my own VQGAN
Thanks for this awesome paper and clean repo!