tengfei-wang
/
hfgi
High-Fidelity GAN Inversion for Image Attribute Editing
Prediction
tengfei-wang/hfgi:7a67b186ID2jwhv7svgnhernfno5xiilgl6mStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", "edit_degree": 4, "edit_attribute": "beard" }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", { input: { image: "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", edit_degree: 4, edit_attribute: "beard" } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", input={ "image": "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", "edit_degree": 4, "edit_attribute": "beard" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", "input": { "image": "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", "edit_degree": 4, "edit_attribute": "beard" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2021-11-04T13:41:26.358621Z", "created_at": "2021-11-04T13:40:41.155667Z", "data_removed": false, "error": null, "id": "2jwhv7svgnhernfno5xiilgl6m", "input": { "image": "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", "edit_degree": 4, "edit_attribute": "beard" }, "logs": "Aligned image has shape: (256, 256)\n/root/.pyenv/versions/3.8.12/lib/python3.8/site-packages/torch/nn/functional.py:3060: UserWarning: Default upsampling behavior when mode=bilinear is changed to align_corners=False since 0.4.0. Please specify align_corners=True if the old behavior is desired. See the documentation of nn.Upsample for details.\n warnings.warn(\"Default upsampling behavior when mode={} is changed \"", "metrics": { "total_time": 45.202954 }, "output": [ { "file": "https://replicate.delivery/mgxm/5b65bdd6-cc19-4bfe-99b9-c7b29457a07a/out.png" } ], "started_at": "2021-12-23T01:08:05.909315Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/2jwhv7svgnhernfno5xiilgl6m", "cancel": "https://api.replicate.com/v1/predictions/2jwhv7svgnhernfno5xiilgl6m/cancel" }, "version": "1e8ae7ea785ea246208c3db592ee3eb16db0be0daaa11c935f8ef270ed810895" }
Aligned image has shape: (256, 256) /root/.pyenv/versions/3.8.12/lib/python3.8/site-packages/torch/nn/functional.py:3060: UserWarning: Default upsampling behavior when mode=bilinear is changed to align_corners=False since 0.4.0. Please specify align_corners=True if the old behavior is desired. See the documentation of nn.Upsample for details. warnings.warn("Default upsampling behavior when mode={} is changed "
Prediction
tengfei-wang/hfgi:7a67b186IDbnddzb4vxvhfpnybaknu6h6nyyStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/f753dd19-6747-4f5a-b27e-4e0ab4f9e5ee/0_W3mUd9hdz0HezHRq.png", "edit_degree": "1.87", "edit_attribute": "smile" }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", { input: { image: "https://replicate.delivery/mgxm/f753dd19-6747-4f5a-b27e-4e0ab4f9e5ee/0_W3mUd9hdz0HezHRq.png", edit_degree: "1.87", edit_attribute: "smile" } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", input={ "image": "https://replicate.delivery/mgxm/f753dd19-6747-4f5a-b27e-4e0ab4f9e5ee/0_W3mUd9hdz0HezHRq.png", "edit_degree": "1.87", "edit_attribute": "smile" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", "input": { "image": "https://replicate.delivery/mgxm/f753dd19-6747-4f5a-b27e-4e0ab4f9e5ee/0_W3mUd9hdz0HezHRq.png", "edit_degree": "1.87", "edit_attribute": "smile" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2021-11-05T06:38:39.206274Z", "created_at": "2021-11-05T06:38:35.625719Z", "data_removed": false, "error": null, "id": "bnddzb4vxvhfpnybaknu6h6nyy", "input": { "image": "https://replicate.delivery/mgxm/f753dd19-6747-4f5a-b27e-4e0ab4f9e5ee/0_W3mUd9hdz0HezHRq.png", "edit_degree": "1.87", "edit_attribute": "smile" }, "logs": "Aligned image has shape: (256, 256)", "metrics": { "total_time": 3.580555 }, "output": [ { "file": "https://replicate.delivery/mgxm/7ee59901-acca-4d77-8f73-bd472fbb34b0/out.png" } ], "started_at": "2022-03-15T09:47:53.389672Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/bnddzb4vxvhfpnybaknu6h6nyy", "cancel": "https://api.replicate.com/v1/predictions/bnddzb4vxvhfpnybaknu6h6nyy/cancel" }, "version": "1e8ae7ea785ea246208c3db592ee3eb16db0be0daaa11c935f8ef270ed810895" }
Aligned image has shape: (256, 256)
Prediction
tengfei-wang/hfgi:7a67b186IDxdvtvrinlbh3zfo5bpnsiadzciStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/a45894ea-2203-4af6-9e33-c6321ea815c3/elon-musk-bloomberg-1200.jpg", "edit_degree": "2.85", "edit_attribute": "age" }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", { input: { image: "https://replicate.delivery/mgxm/a45894ea-2203-4af6-9e33-c6321ea815c3/elon-musk-bloomberg-1200.jpg", edit_degree: "2.85", edit_attribute: "age" } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", input={ "image": "https://replicate.delivery/mgxm/a45894ea-2203-4af6-9e33-c6321ea815c3/elon-musk-bloomberg-1200.jpg", "edit_degree": "2.85", "edit_attribute": "age" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", "input": { "image": "https://replicate.delivery/mgxm/a45894ea-2203-4af6-9e33-c6321ea815c3/elon-musk-bloomberg-1200.jpg", "edit_degree": "2.85", "edit_attribute": "age" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2021-11-05T06:47:37.686916Z", "created_at": "2021-11-05T06:47:33.208683Z", "data_removed": false, "error": null, "id": "xdvtvrinlbh3zfo5bpnsiadzci", "input": { "image": "https://replicate.delivery/mgxm/a45894ea-2203-4af6-9e33-c6321ea815c3/elon-musk-bloomberg-1200.jpg", "edit_degree": "2.85", "edit_attribute": "age" }, "logs": "Aligned image has shape: (256, 256)", "metrics": { "total_time": 4.478233 }, "output": [ { "file": "https://replicate.delivery/mgxm/654a6810-57b1-461e-a48c-3eb8201c5d98/out.png" } ], "started_at": "2022-03-25T04:47:44.520361Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/xdvtvrinlbh3zfo5bpnsiadzci", "cancel": "https://api.replicate.com/v1/predictions/xdvtvrinlbh3zfo5bpnsiadzci/cancel" }, "version": "1e8ae7ea785ea246208c3db592ee3eb16db0be0daaa11c935f8ef270ed810895" }
Aligned image has shape: (256, 256)
Prediction
tengfei-wang/hfgi:7a67b186IDdxwshzuhj5hc3l6sobe2p5ciquStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/58101fe8-032b-4c73-bbe4-0a2af2044887/2343.jpg", "edit_degree": "0.84", "edit_attribute": "lip" }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", { input: { image: "https://replicate.delivery/mgxm/58101fe8-032b-4c73-bbe4-0a2af2044887/2343.jpg", edit_degree: "0.84", edit_attribute: "lip" } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", input={ "image": "https://replicate.delivery/mgxm/58101fe8-032b-4c73-bbe4-0a2af2044887/2343.jpg", "edit_degree": "0.84", "edit_attribute": "lip" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", "input": { "image": "https://replicate.delivery/mgxm/58101fe8-032b-4c73-bbe4-0a2af2044887/2343.jpg", "edit_degree": "0.84", "edit_attribute": "lip" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2021-11-05T06:55:13.872348Z", "created_at": "2021-11-05T06:55:10.450955Z", "data_removed": false, "error": null, "id": "dxwshzuhj5hc3l6sobe2p5ciqu", "input": { "image": "https://replicate.delivery/mgxm/58101fe8-032b-4c73-bbe4-0a2af2044887/2343.jpg", "edit_degree": "0.84", "edit_attribute": "lip" }, "logs": "Aligned image has shape: (256, 256)", "metrics": { "total_time": 3.421393 }, "output": [ { "file": "https://replicate.delivery/mgxm/7e774a86-23ff-4160-8efd-8b55f9929771/out.png" } ], "started_at": "2022-03-17T10:17:21.629963Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/dxwshzuhj5hc3l6sobe2p5ciqu", "cancel": "https://api.replicate.com/v1/predictions/dxwshzuhj5hc3l6sobe2p5ciqu/cancel" }, "version": "1e8ae7ea785ea246208c3db592ee3eb16db0be0daaa11c935f8ef270ed810895" }
Aligned image has shape: (256, 256)
Prediction
tengfei-wang/hfgi:7a67b186Input
{ "image": "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", "edit_degree": "1.5", "edit_attribute": "smile" }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", { input: { image: "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", edit_degree: "1.5", edit_attribute: "smile" } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", input={ "image": "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", "edit_degree": "1.5", "edit_attribute": "smile" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", "input": { "image": "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", "edit_degree": "1.5", "edit_attribute": "smile" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2021-11-04T13:43:28.781826Z", "created_at": "2021-11-04T13:43:25.909851Z", "data_removed": false, "error": null, "id": "p5tqlw47jjhjdovxz33zhl3fva", "input": { "image": "https://replicate.delivery/mgxm/caf4c15f-fe0e-406a-a62b-f2700f427910/00044.jpg", "edit_degree": "1.5", "edit_attribute": "smile" }, "logs": "Aligned image has shape: (256, 256)", "metrics": { "total_time": 2.871975 }, "output": [ { "file": "https://replicate.delivery/mgxm/bd5bccb0-b834-4f03-817b-393c7d30175d/out.png" } ], "started_at": "2021-11-30T19:33:09.650036Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/p5tqlw47jjhjdovxz33zhl3fva", "cancel": "https://api.replicate.com/v1/predictions/p5tqlw47jjhjdovxz33zhl3fva/cancel" }, "version": "1e8ae7ea785ea246208c3db592ee3eb16db0be0daaa11c935f8ef270ed810895" }
Aligned image has shape: (256, 256)
Prediction
tengfei-wang/hfgi:7a67b186IDny5ywmezwvejbnebbz7fmc7kzqStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/df4dca73-e89e-4213-9ce4-6b6ba652e875/busineswoman_caro_original_43727.jpg", "edit_degree": "1.18", "edit_attribute": "smile" }
Install Replicate’s Node.js client library:npm install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", { input: { image: "https://replicate.delivery/mgxm/df4dca73-e89e-4213-9ce4-6b6ba652e875/busineswoman_caro_original_43727.jpg", edit_degree: "1.18", edit_attribute: "smile" } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:import replicate
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "tengfei-wang/hfgi:7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", input={ "image": "https://replicate.delivery/mgxm/df4dca73-e89e-4213-9ce4-6b6ba652e875/busineswoman_caro_original_43727.jpg", "edit_degree": "1.18", "edit_attribute": "smile" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run tengfei-wang/hfgi using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "7a67b1861633a89e4ba600d39dd4cb447ce06091833cc9df13ecdb078c1e3f64", "input": { "image": "https://replicate.delivery/mgxm/df4dca73-e89e-4213-9ce4-6b6ba652e875/busineswoman_caro_original_43727.jpg", "edit_degree": "1.18", "edit_attribute": "smile" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2021-11-05T07:38:04.491781Z", "created_at": "2021-11-05T07:38:01.109302Z", "data_removed": false, "error": null, "id": "ny5ywmezwvejbnebbz7fmc7kzq", "input": { "image": "https://replicate.delivery/mgxm/df4dca73-e89e-4213-9ce4-6b6ba652e875/busineswoman_caro_original_43727.jpg", "edit_degree": "1.18", "edit_attribute": "smile" }, "logs": "Aligned image has shape: (256, 256)", "metrics": { "total_time": 3.382479 }, "output": [ { "file": "https://replicate.delivery/mgxm/3f27d7a9-763b-45c7-ba86-686d11789b99/out.png" } ], "started_at": "2022-04-20T17:06:39.382417Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/ny5ywmezwvejbnebbz7fmc7kzq", "cancel": "https://api.replicate.com/v1/predictions/ny5ywmezwvejbnebbz7fmc7kzq/cancel" }, "version": "1e8ae7ea785ea246208c3db592ee3eb16db0be0daaa11c935f8ef270ed810895" }
Aligned image has shape: (256, 256)
Want to make some of these yourself?
Run this model