Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix unable to find Real-ESRGAN model info error (AttributeError: 'NoneType' ↵ | AUTOMATIC | 2023-01-17 | 1 | -0/+1 |
| | | | | object has no attribute 'data_path') #6841 #5170 | ||||
* | make it possible to use fractional values for SD upscale. | AUTOMATIC | 2023-01-02 | 1 | -3/+3 |
| | |||||
* | fix upscale loop erroneously applied multiple times | AUTOMATIC | 2022-11-04 | 1 | -2/+10 |
| | |||||
* | add resrgan 8x, allow use 1x and up to 8x extra models, move BSRGAN model, ↵ | victorca25 | 2022-10-30 | 1 | -1/+16 |
| | | | | add nearest | ||||
* | fix logic error in #1832 | AUTOMATIC | 2022-10-09 | 1 | -1/+1 |
| | |||||
* | Removed duplicate definition model_path | Milly | 2022-10-09 | 1 | -3/+4 |
| | |||||
* | fix the bug with broken rescaling in PR | AUTOMATIC | 2022-09-30 | 1 | -1/+1 |
| | |||||
* | fix bugs in the PR | AUTOMATIC | 2022-09-30 | 1 | -1/+1 |
| | |||||
* | Holy $hit. | d8ahazard | 2022-09-29 | 1 | -0/+121 |
Yep. Fix gfpgan_model_arch requirement(s). Add Upscaler base class, move from images. Add a lot of methods to Upscaler. Re-work all the child upscalers to be proper classes. Add BSRGAN scaler. Add ldsr_model_arch class, removing the dependency for another repo that just uses regular latent-diffusion stuff. Add one universal method that will always find and load new upscaler models without having to add new "setup_model" calls. Still need to add command line params, but that could probably be automated. Add a "self.scale" property to all Upscalers so the scalers themselves can do "things" in response to the requested upscaling size. Ensure LDSR doesn't get stuck in a longer loop of "upscale/downscale/upscale" as we try to reach the target upscale size. Add typehints for IDE sanity. PEP-8 improvements. Moar. |