hi @mpnagle , sorry for the delay, the image-to-image pipeline is now supported o most models with the correct tag task image-to-image
Here’s a tweet with more context, not sure what’s your framework, but using our JS library it’s very easy
await hf
.imageToImage({
inputs: imageBlob,
model: "lllyasviel/control_v11f1p_sd15_depth",
parameters: {
prompt: "Elmo's Lecture in a tropical beach in the background"
}
})
.then((blob) => {
const image = new Image();
image.src = URL.createObjectURL(blob);
return image;
})