-
Notifications
You must be signed in to change notification settings - Fork 558
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
Weird figure reconstruction results for newly trained model #47
Comments
did you train it from scratch or using finetuning? what was your dataset size? |
what are the steps to train a model for custom dataset? |
I think I find the reason. For me, it's because I stop the training at # Z, _ = model.encode(x, layer_count - 1, 1)
Z, _ = model.encode(x, layer_count - 2, 1)
# cause the layer_cout=7 in the config file, and I want it to be 5, not 6 Accordingly, we should also adjust the decoder part model.decoder(x, 5, 1, noise=True) hope it helps. stay safe |
Yes, what @uhiu says seems to be the most likely cause. The first thing to check is the config. There are two parameters: for example from bedroom:
Basically, if you want resolution 2**x, then you should set @5agado, |
I trained a new model on a personal footwear dataset. Sample results from training looked good, but when I run a
make_figures
script, I obtained this weird, oversaturated/false-colors results.Any idea what's happening?
The text was updated successfully, but these errors were encountered: