Richard Brown
Richard Brown
- Adds `pyproject.toml` and `setup.py` files which allows for `pip install`. - Move files into `src` so that internally and externally functionality can be imported with eg `from marigold.model.rgb_encoder import...
### 🐛 Describe the bug The current code is: `pic = pic.mul(255).byte()`. If the input is, say, 0.9999, this will be rounded down to 254 instead of 255. ```python >>>...
1. Add a `pyproject.toml` that allows for `pip install` 2. Restructure code so that the source code lives inside `src` 3. Replace relative imports with absolute (`from .backbones` -> `from...
this allows for `pip install -e .` or similar. Other `requirements.txt` files can have: ``` dift @ git+https://github.com/Tsingularity/dift.git ```
When the `Processor` class is imported, all possible processors are also imported. This results in [this warning](https://github.com/patrickvonplaten/controlnet_aux/blob/master/src/controlnet_aux/mediapipe_face/mediapipe_face_common.py#L8) being displayed, even though I have no intention of using the processor that...
What's the protocol for recolouring the region of an image? When I recolour one of the layers, all other layers jump around and I don't seem to be able to...
I have an image with multiple objects and background. Is there anyway to produce mattes such that the sum in any given pixel is equal to one? In other words,...
Is it possible to use the `.and()` format with weights with SDXL? I'm trying the following: ```python from compel import Compel, ReturnedEmbeddingsType from diffusers import DiffusionPipeline import torch pipeline =...