File size: 1,017 Bytes
2c800a8 2d4a49c 2c800a8 2d4a49c 3ebf282 2d4a49c ab0bdff 2d4a49c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
---
tags:
- vision
- image-to-image
- endpoints-template
inference: false
pipeline_tag: image-to-image
base_model: timbrooks/instruct-pix2pix
library_name: generic
---
# Fork of [timbrooks/instruct-pix2pix](https://huggingface.co/timbrooks/instruct-pix2pix) for an `image-to-image` Inference endpoint.
This repository implements a `custom` task for `image-to-image` with instructions for 🤗 Inference Endpoints. The code for the customized
pipeline is in the handler.py.
To use deploy this model an Inference Endpoint you have to select `Custom` as task to use the `handler.py` file.
### expected Request payload
```json
{
"inputs": encoded_image,
"parameters": {
"parameters": {
"prompt": "what would it look like if it were snowing big time",
"negative_prompt": "", //default empty
"num_inference_steps": 10, //default 10
"image_guidance_scale": 1.1, //default 1.5
"guidance_scale": 9 //default 7.5
}
}
}
```
`encoded_image` is a base64 encoded image.
|