File size: 439 Bytes
a4196d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

---
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>"}})
```