arielreplicate / paella_fast_image_variation
Fast image variation model
Prediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6IDxhiein436bfshjaes27iasgkvyStatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy61zyyjbhCnAJKgxP8Q6EIIzN1JDKmJAYRGlgZriNY3Wc2h/man1.jpg", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy61zyyjbhCnAJKgxP8Q6EIIzN1JDKmJAYRGlgZriNY3Wc2h/man1.jpg", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy61zyyjbhCnAJKgxP8Q6EIIzN1JDKmJAYRGlgZriNY3Wc2h/man1.jpg", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy61zyyjbhCnAJKgxP8Q6EIIzN1JDKmJAYRGlgZriNY3Wc2h/man1.jpg", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:24:41.904457Z", "created_at": "2022-12-16T09:24:39.047680Z", "data_removed": false, "error": null, "id": "xhiein436bfshjaes27iasgkvy", "input": { "input_image": "https://replicate.delivery/pbxt/Hy61zyyjbhCnAJKgxP8Q6EIIzN1JDKmJAYRGlgZriNY3Wc2h/man1.jpg", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 2.817851, "total_time": 2.856777 }, "output": [ "https://replicate.delivery/pbxt/De4yOwSVT5TcKiOhL4PBWYoa2HYiX3nrQEq2hyDjalwsWPFIA/output-0.png", "https://replicate.delivery/pbxt/nCFDGeKTtP0dcCvBnQY2Va6mDteE1fyU8RwpeCXEY7ck16pAB/output-1.png", "https://replicate.delivery/pbxt/aVBPpkWQf8T4AiTf7qia8La9tOnP2g05KThVhkfjsZyza9UgA/output-2.png" ], "started_at": "2022-12-16T09:24:39.086606Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/xhiein436bfshjaes27iasgkvy", "cancel": "https://api.replicate.com/v1/predictions/xhiein436bfshjaes27iasgkvy/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated inPrediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6IDf5jxqmc2s5h6vhjyeud6nl4wlmStatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy5tpEUFqCLPjvFp7wTFMwhhGer9VUPMiuCY8Ws2XngN1uNA/00019.png", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy5tpEUFqCLPjvFp7wTFMwhhGer9VUPMiuCY8Ws2XngN1uNA/00019.png", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy5tpEUFqCLPjvFp7wTFMwhhGer9VUPMiuCY8Ws2XngN1uNA/00019.png", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy5tpEUFqCLPjvFp7wTFMwhhGer9VUPMiuCY8Ws2XngN1uNA/00019.png", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:23:02.626438Z", "created_at": "2022-12-16T09:16:02.297512Z", "data_removed": false, "error": null, "id": "f5jxqmc2s5h6vhjyeud6nl4wlm", "input": { "input_image": "https://replicate.delivery/pbxt/Hy5tpEUFqCLPjvFp7wTFMwhhGer9VUPMiuCY8Ws2XngN1uNA/00019.png", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 4.08359, "total_time": 420.328926 }, "output": [ "https://replicate.delivery/pbxt/caryrjovsqrpAtICC7PWGlcAQdXdzakUimlIJfeduBH2reUgA/output-0.png", "https://replicate.delivery/pbxt/nGabyAMZ7go0P5rZ2H3YH6pUxeNTmuRtpH7Ou7B19Qd7VPFIA/output-1.png", "https://replicate.delivery/pbxt/EfRALYdYMRSpLSojK2SvukEvVARGwafvUAiKnqotSQetX9UgA/output-2.png" ], "started_at": "2022-12-16T09:22:58.542848Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/f5jxqmc2s5h6vhjyeud6nl4wlm", "cancel": "https://api.replicate.com/v1/predictions/f5jxqmc2s5h6vhjyeud6nl4wlm/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated inPrediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6IDc5lziml6vbglpjzcm45cje2hvaStatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy63CMpiScGmMCc93lhEa7BYvXzbGoukdtjPpyEMaiNUcqEJ/1.jpg", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy63CMpiScGmMCc93lhEa7BYvXzbGoukdtjPpyEMaiNUcqEJ/1.jpg", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy63CMpiScGmMCc93lhEa7BYvXzbGoukdtjPpyEMaiNUcqEJ/1.jpg", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy63CMpiScGmMCc93lhEa7BYvXzbGoukdtjPpyEMaiNUcqEJ/1.jpg", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:25:58.451010Z", "created_at": "2022-12-16T09:25:55.506279Z", "data_removed": false, "error": null, "id": "c5lziml6vbglpjzcm45cje2hva", "input": { "input_image": "https://replicate.delivery/pbxt/Hy63CMpiScGmMCc93lhEa7BYvXzbGoukdtjPpyEMaiNUcqEJ/1.jpg", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 2.908085, "total_time": 2.944731 }, "output": [ "https://replicate.delivery/pbxt/qUoLmV2NEkY0Eh89W6idCgtJS8drjv9DSgo8vyr3f66SXPFIA/output-0.png", "https://replicate.delivery/pbxt/WNVzuEx8otY7ORaAoa9ihkjSs88gbxgeIXA5lVRKb5DTXPFIA/output-1.png", "https://replicate.delivery/pbxt/GhOYOz4SLopILlGajf2aC9HRmlefb6FXTZ1NqwQBOEKNd9UgA/output-2.png" ], "started_at": "2022-12-16T09:25:55.542925Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/c5lziml6vbglpjzcm45cje2hva", "cancel": "https://api.replicate.com/v1/predictions/c5lziml6vbglpjzcm45cje2hva/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated inPrediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6IDsfvcntibdzf7jhtfd5uiu7gfbmStatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy64BHBSwEJDcUhyjinl2cF40GZaXKHagfbmNDJgWZ8dOcfp/23080.jpg", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy64BHBSwEJDcUhyjinl2cF40GZaXKHagfbmNDJgWZ8dOcfp/23080.jpg", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy64BHBSwEJDcUhyjinl2cF40GZaXKHagfbmNDJgWZ8dOcfp/23080.jpg", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy64BHBSwEJDcUhyjinl2cF40GZaXKHagfbmNDJgWZ8dOcfp/23080.jpg", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:27:00.333534Z", "created_at": "2022-12-16T09:26:57.370100Z", "data_removed": false, "error": null, "id": "sfvcntibdzf7jhtfd5uiu7gfbm", "input": { "input_image": "https://replicate.delivery/pbxt/Hy64BHBSwEJDcUhyjinl2cF40GZaXKHagfbmNDJgWZ8dOcfp/23080.jpg", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 2.971455, "total_time": 2.963434 }, "output": [ "https://replicate.delivery/pbxt/eTf3wYY8F4r950B8owZLASZv8fIQQrkPFp3KSHLZvXhGf6pAB/output-0.png", "https://replicate.delivery/pbxt/5SPf0rpFkZUrQaZecLpf9gGfDrGvBvivWlZPRwyeuP3n81TBC/output-1.png", "https://replicate.delivery/pbxt/6g7912yGnV56KpHseUXABRRmZMKRfkBVEtkox8foVDwJf6pAB/output-2.png" ], "started_at": "2022-12-16T09:26:57.362079Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/sfvcntibdzf7jhtfd5uiu7gfbm", "cancel": "https://api.replicate.com/v1/predictions/sfvcntibdzf7jhtfd5uiu7gfbm/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated inPrediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6IDmeu2jxvqevgglfuybhwucbokqyStatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy61EJYarLuKUNrLInNoRgyEB6tBNnZcYA1WNCPbLooRahzl/chicago.jpg", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy61EJYarLuKUNrLInNoRgyEB6tBNnZcYA1WNCPbLooRahzl/chicago.jpg", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy61EJYarLuKUNrLInNoRgyEB6tBNnZcYA1WNCPbLooRahzl/chicago.jpg", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy61EJYarLuKUNrLInNoRgyEB6tBNnZcYA1WNCPbLooRahzl/chicago.jpg", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:23:55.453319Z", "created_at": "2022-12-16T09:23:52.410087Z", "data_removed": false, "error": null, "id": "meu2jxvqevgglfuybhwucbokqy", "input": { "input_image": "https://replicate.delivery/pbxt/Hy61EJYarLuKUNrLInNoRgyEB6tBNnZcYA1WNCPbLooRahzl/chicago.jpg", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 3.006822, "total_time": 3.043232 }, "output": [ "https://replicate.delivery/pbxt/5AVtfee4IEbBLI7k1TbLwT6yPVIBcKckM3pRebYjIH4py6pAB/output-0.png", "https://replicate.delivery/pbxt/eqcp0rCZG93MCSFVYMiYznChOvNYwEtHW8rpxfetyhXXZ9UgA/output-1.png", "https://replicate.delivery/pbxt/BIsHhcE5x3JRHlLOM8nKblXQfAAT8PfqQjUfgbjQbAPWZ9UgA/output-2.png" ], "started_at": "2022-12-16T09:23:52.446497Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/meu2jxvqevgglfuybhwucbokqy", "cancel": "https://api.replicate.com/v1/predictions/meu2jxvqevgglfuybhwucbokqy/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated inPrediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6IDnkoxgwrg4rhx5bgronznsfcgkiStatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy61kuVz9j8YNOZssQUOLhZbjr5nS3sQ964lsMFvGC7rMurF/home_alone.jpg", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy61kuVz9j8YNOZssQUOLhZbjr5nS3sQ964lsMFvGC7rMurF/home_alone.jpg", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy61kuVz9j8YNOZssQUOLhZbjr5nS3sQ964lsMFvGC7rMurF/home_alone.jpg", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy61kuVz9j8YNOZssQUOLhZbjr5nS3sQ964lsMFvGC7rMurF/home_alone.jpg", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:24:27.437370Z", "created_at": "2022-12-16T09:24:24.460079Z", "data_removed": false, "error": null, "id": "nkoxgwrg4rhx5bgronznsfcgki", "input": { "input_image": "https://replicate.delivery/pbxt/Hy61kuVz9j8YNOZssQUOLhZbjr5nS3sQ964lsMFvGC7rMurF/home_alone.jpg", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 2.942325, "total_time": 2.977291 }, "output": [ "https://replicate.delivery/pbxt/OfmweizI4Mv8lUo0xnUuQQrIsTYMgreaVfPH4Vw3Jw1q06pAB/output-0.png", "https://replicate.delivery/pbxt/pfscxr9JvL2pZiPqJBpOx4RHo55zQZDmn4X1Q1LYPd4lWPFIA/output-1.png", "https://replicate.delivery/pbxt/ywZAqQxd2PKYCdngwrFUUj4YtYlts1Vo3fwqrZZaEurlWPFIA/output-2.png" ], "started_at": "2022-12-16T09:24:24.495045Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/nkoxgwrg4rhx5bgronznsfcgki", "cancel": "https://api.replicate.com/v1/predictions/nkoxgwrg4rhx5bgronznsfcgki/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated inPrediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6IDlaubehl4uzhetpplomvtalazi4StatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy62wv4bQMQagDz5bl1BYZIfJpI0CbAnzdnolpjyqG9CjiyY/pool1.jpg", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy62wv4bQMQagDz5bl1BYZIfJpI0CbAnzdnolpjyqG9CjiyY/pool1.jpg", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy62wv4bQMQagDz5bl1BYZIfJpI0CbAnzdnolpjyqG9CjiyY/pool1.jpg", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy62wv4bQMQagDz5bl1BYZIfJpI0CbAnzdnolpjyqG9CjiyY/pool1.jpg", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:25:42.798531Z", "created_at": "2022-12-16T09:25:39.924999Z", "data_removed": false, "error": null, "id": "laubehl4uzhetpplomvtalazi4", "input": { "input_image": "https://replicate.delivery/pbxt/Hy62wv4bQMQagDz5bl1BYZIfJpI0CbAnzdnolpjyqG9CjiyY/pool1.jpg", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 2.836516, "total_time": 2.873532 }, "output": [ "https://replicate.delivery/pbxt/eIUCgH668A2YSyEAfjlBIJVEZphC85WK0zu7gyySD8esc9UgA/output-0.png", "https://replicate.delivery/pbxt/vxh7Sea7xByKfUFOKRww8uMzMq0v0Vkssz3tKFU37wTWueUgA/output-1.png", "https://replicate.delivery/pbxt/kq9ETLxe78wPBaNij5KxkceWV27QejIfBufIRqmca8gzy1TBC/output-2.png" ], "started_at": "2022-12-16T09:25:39.962015Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/laubehl4uzhetpplomvtalazi4", "cancel": "https://api.replicate.com/v1/predictions/laubehl4uzhetpplomvtalazi4/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated inPrediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6IDf3hrli4iwfh7hin5hd4ydmfrnmStatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy63PttTYF2dvNMimrt5o1m2axWgryEfgDMRDSWYseqOq6yj/35049.jpg", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy63PttTYF2dvNMimrt5o1m2axWgryEfgDMRDSWYseqOq6yj/35049.jpg", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy63PttTYF2dvNMimrt5o1m2axWgryEfgDMRDSWYseqOq6yj/35049.jpg", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy63PttTYF2dvNMimrt5o1m2axWgryEfgDMRDSWYseqOq6yj/35049.jpg", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:26:12.233132Z", "created_at": "2022-12-16T09:26:09.317607Z", "data_removed": false, "error": null, "id": "f3hrli4iwfh7hin5hd4ydmfrnm", "input": { "input_image": "https://replicate.delivery/pbxt/Hy63PttTYF2dvNMimrt5o1m2axWgryEfgDMRDSWYseqOq6yj/35049.jpg", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 2.875454, "total_time": 2.915525 }, "output": [ "https://replicate.delivery/pbxt/WLPRM4GIWP7rBFuMm03dvCY9HqHYpqJYLefFnECKnfNmd9UgA/output-0.png", "https://replicate.delivery/pbxt/Wa0c8IRnzqbBGR7FQTVoYl5zmd00AeQiJijNUBGwJ8rZXPFIA/output-1.png", "https://replicate.delivery/pbxt/W8m7cteilCyXUKDZwzY3PuhXr4MIX8dsjCvy4s9aeFy0ueUgA/output-2.png" ], "started_at": "2022-12-16T09:26:09.357678Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/f3hrli4iwfh7hin5hd4ydmfrnm", "cancel": "https://api.replicate.com/v1/predictions/f3hrli4iwfh7hin5hd4ydmfrnm/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated inPrediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6IDyfnhkt6dirbixku7kjuvohqat4StatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy63rV2VX71Kh7tS7z0On5VoCnr52al6jf5MLgOFIn6NvTB5/65084.jpg", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy63rV2VX71Kh7tS7z0On5VoCnr52al6jf5MLgOFIn6NvTB5/65084.jpg", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy63rV2VX71Kh7tS7z0On5VoCnr52al6jf5MLgOFIn6NvTB5/65084.jpg", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy63rV2VX71Kh7tS7z0On5VoCnr52al6jf5MLgOFIn6NvTB5/65084.jpg", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:26:40.893034Z", "created_at": "2022-12-16T09:26:37.872797Z", "data_removed": false, "error": null, "id": "yfnhkt6dirbixku7kjuvohqat4", "input": { "input_image": "https://replicate.delivery/pbxt/Hy63rV2VX71Kh7tS7z0On5VoCnr52al6jf5MLgOFIn6NvTB5/65084.jpg", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 2.981986, "total_time": 3.020237 }, "output": [ "https://replicate.delivery/pbxt/l5Cy24cBEF52AF8HySOfiXSh3vFTRYXWSejPNDmZRLwQveUgA/output-0.png", "https://replicate.delivery/pbxt/e3iWcy4ATq2FWql1loJEWXvI5m7mfkfL7udkG50fpteE61TBC/output-1.png", "https://replicate.delivery/pbxt/hzkjK8jUHDaoJNVvCVXUMrSeZMvzV6zIJbPHJ2M2yCZoXPFIA/output-2.png" ], "started_at": "2022-12-16T09:26:37.911048Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/yfnhkt6dirbixku7kjuvohqat4", "cancel": "https://api.replicate.com/v1/predictions/yfnhkt6dirbixku7kjuvohqat4/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated inPrediction
arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6ID26xt2tigebc4zlnbmdzgbcvpreStatusSucceededSourceWebHardware–Total durationCreatedInput
{ "input_image": "https://replicate.delivery/pbxt/Hy65U3ALHLH9bryXgLIByDk9zo77b8r9kt5Hph3Gfgl0QEzs/image.jpg", "num_outputs": 3 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", { input: { input_image: "https://replicate.delivery/pbxt/Hy65U3ALHLH9bryXgLIByDk9zo77b8r9kt5Hph3Gfgl0QEzs/image.jpg", num_outputs: 3 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run arielreplicate/paella_fast_image_variation using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", input={ "input_image": "https://replicate.delivery/pbxt/Hy65U3ALHLH9bryXgLIByDk9zo77b8r9kt5Hph3Gfgl0QEzs/image.jpg", "num_outputs": 3 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run arielreplicate/paella_fast_image_variation 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": "arielreplicate/paella_fast_image_variation:7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6", "input": { "input_image": "https://replicate.delivery/pbxt/Hy65U3ALHLH9bryXgLIByDk9zo77b8r9kt5Hph3Gfgl0QEzs/image.jpg", "num_outputs": 3 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-12-16T09:28:23.303807Z", "created_at": "2022-12-16T09:28:20.329237Z", "data_removed": false, "error": null, "id": "26xt2tigebc4zlnbmdzgbcvpre", "input": { "input_image": "https://replicate.delivery/pbxt/Hy65U3ALHLH9bryXgLIByDk9zo77b8r9kt5Hph3Gfgl0QEzs/image.jpg", "num_outputs": 3 }, "logs": null, "metrics": { "predict_time": 2.936627, "total_time": 2.97457 }, "output": [ "https://replicate.delivery/pbxt/VeM9BUQXI53Uc6dm9PYKF8ZLuvAyjyUPhkOC8lBKPMObYPFIA/output-0.png", "https://replicate.delivery/pbxt/Ov1qmXRqHfTxWKiQQFsxh63G8bFkMevQ25oRMmFxO6N2weUgA/output-1.png", "https://replicate.delivery/pbxt/Dfnpd9TRgOUlT6NXOIjCEZyykHegegp7eSnYDLYvppSfG2TBC/output-2.png" ], "started_at": "2022-12-16T09:28:20.367180Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/26xt2tigebc4zlnbmdzgbcvpre", "cancel": "https://api.replicate.com/v1/predictions/26xt2tigebc4zlnbmdzgbcvpre/cancel" }, "version": "7d275b60c06d01c65e3eeca1befe63d6a31af97698c4024a335cdb67b8a6e3f6" }
Generated in
Want to make some of these yourself?
Run this model