TBurdairon's picture
Upload folder using huggingface_hub
a4196d6 verified
---
pipeline_tag: image-to-image
tags:
- ESRGAN
- super-resolution
- enhancer
---
# Finegrain Image Enhancer (ESRGAN-based)
This model enhances image quality using ESRGAN and custom ControlNet/LoRA techniques.
## Usage
```python
from huggingface_hub import InferenceClient
client = InferenceClient("your-username/finegrain-image-enhancer", token="hf_xxx")
result = client.post(json={"inputs": {"image": "<base64 image>"}})
```