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

Checkpoints missing #8

Open
nicolas-dufour opened this issue Aug 2, 2023 · 3 comments
Open

Checkpoints missing #8

nicolas-dufour opened this issue Aug 2, 2023 · 3 comments

Comments

@nicolas-dufour
Copy link

Hi,
The only checkpoint available on huggingface is stage c.
Where can we find the other stages?

Thanks

@Lime-Cakes
Copy link

The latest commit on huggingface is for v3 (slightly different from paper).

If downloading using huggingface API, you'll need to specify revision. For example, to download v1 stage A (vqgan), use
checkpoint_path=hf_hub_download(repo_id="dome272/wuerstchen", filename="vqgan_f4_v1_500k.pt", revision="c9a8af033966c756941168f2a537595a15e0c1a8")

I believe the full v3 will be released soon, which would be better as a different stage b conditioning is used, fixing the variable resolution issue mentioned in the paper, so you might want to stick to the new version once it's released.

@nicolas-dufour
Copy link
Author

Oh thanks! Any info on what changed compared to the paper?

@Lime-Cakes
Copy link

Lime-Cakes commented Aug 4, 2023

Oh thanks! Any info on what changed compared to the paper?

Based on what I heard in Eleutherai diffusion reading group, the following changes had been made:

Stage A: VQGAN is still used. However, quantization is removed, making it a pseudo VAE.
Stage B: Uses LDM (Unet) instead of pealla. Instead of cross attention to inject conditioning, concat is used.
Other changes: Different aspect ratio training is used
As a result, V3 doesn't have issue with decoding at different resolution (as mentioned by paper in section 5 Discussion)

However, it's highly recommended to wait for the release notes. My notes might be as inaccurate or outdated. It's possible I misunderstood certain things or missed important changes.

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

2 participants