feat[mod]: add RealESRGAN x4 upscaler models to registry#1943
Merged
gianni-cor merged 2 commits intoMay 7, 2026
Conversation
gianni-cor
approved these changes
May 7, 2026
yuranich
approved these changes
May 7, 2026
Contributor
Author
|
/review |
Contributor
Tier-based Approval Status |
lauripiisang
approved these changes
May 7, 2026
Contributor
|
/review |
Proletter
pushed a commit
that referenced
this pull request
May 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What problem does this PR solve?
The
@qvac/diffusion-cppengine supports ESRGAN-based post-generation upscaling (seeexamples/generate-image-esrgan-upscale.js), but the registry currently has no ESRGAN weights, so consumers must source them out-of-band.How does it solve it?
Adds the three official Real-ESRGAN x4 weights from
xinntao/Real-ESRGANtomodels.prod.jsonunder@qvac/diffusion-cpp:RealESRGAN_x4plus.pth— general real-world images (v0.1.0)RealESRNet_x4plus.pth— non-GAN variant (v0.1.1)RealESRGAN_x4plus_anime_6B.pth— anime-tuned, 6 RRDB blocks (v0.2.2.4)Supporting changes:
BSD-3-Clauseindata/licenses.jsonand adddata/licenses/BSD-3-Clause/LICENSE.txt(verbatim text from the upstream repo, verified via the GitHub license API).BSD-3-Clauseentry to the registry-serverNOTICEfile with upstream attribution.MODEL_SUBMISSION_GUIDE.mdto list the newly-supported license IDs (openrail++,BSD-3-Clause).S3 paths follow the standard convention (
s3:///qvac_models_compiled/esrgan/2026-05-07/...); artifacts will be uploaded bysync-models.json merge.Validated locally:
Breaking changes
None. Additive only.