rmokady
/
clip_prefix_caption
Simple image captioning model using CLIP and GPT-2
Prediction
rmokady/clip_prefix_caption:9a34a633IDkfj6p5fyoza4dp6l2zcvyekl5uStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/4dc7763a-f234-4a7c-a85f-cb9e05e37cf8/COCO_val2014_000000579664.jpg", "model": "coco", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/4dc7763a-f234-4a7c-a85f-cb9e05e37cf8/COCO_val2014_000000579664.jpg", model: "coco", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/4dc7763a-f234-4a7c-a85f-cb9e05e37cf8/COCO_val2014_000000579664.jpg", "model": "coco", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/4dc7763a-f234-4a7c-a85f-cb9e05e37cf8/COCO_val2014_000000579664.jpg", "model": "coco", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
A bunch of bananas sitting on top of a table.{ "completed_at": "2021-10-09T20:10:21.250045Z", "created_at": "2021-10-09T20:10:19.621096Z", "data_removed": false, "error": null, "id": "kfj6p5fyoza4dp6l2zcvyekl5u", "input": { "image": "https://replicate.delivery/mgxm/4dc7763a-f234-4a7c-a85f-cb9e05e37cf8/COCO_val2014_000000579664.jpg", "model": "coco", "use_beam_search": false }, "logs": null, "metrics": { "total_time": 1.628949 }, "output": [ { "text": "A bunch of bananas sitting on top of a table." } ], "started_at": "2021-11-30T16:47:36.064884Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/kfj6p5fyoza4dp6l2zcvyekl5u", "cancel": "https://api.replicate.com/v1/predictions/kfj6p5fyoza4dp6l2zcvyekl5u/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDewv35dttpnhcvmftflpfer4eemStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/e9270f77-ebdd-44c9-a5a7-750b817d9291/COCO_val2014_000000060623.jpg", "model": "coco", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/e9270f77-ebdd-44c9-a5a7-750b817d9291/COCO_val2014_000000060623.jpg", model: "coco", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/e9270f77-ebdd-44c9-a5a7-750b817d9291/COCO_val2014_000000060623.jpg", "model": "coco", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/e9270f77-ebdd-44c9-a5a7-750b817d9291/COCO_val2014_000000060623.jpg", "model": "coco", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
A woman is eating a piece of cake with a candle.{ "completed_at": "2021-10-09T20:10:55.247173Z", "created_at": "2021-10-09T20:10:53.761452Z", "data_removed": false, "error": null, "id": "ewv35dttpnhcvmftflpfer4eem", "input": { "image": "https://replicate.delivery/mgxm/e9270f77-ebdd-44c9-a5a7-750b817d9291/COCO_val2014_000000060623.jpg", "model": "coco", "use_beam_search": false }, "logs": null, "metrics": { "total_time": 1.485721 }, "output": [ { "text": "A woman is eating a piece of cake with a candle." } ], "started_at": "2021-12-16T07:32:10.070054Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/ewv35dttpnhcvmftflpfer4eem", "cancel": "https://api.replicate.com/v1/predictions/ewv35dttpnhcvmftflpfer4eem/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDhopopplhszeezcbos4mrk6lgreStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/73429dbf-1254-4e19-99c7-5cab7945f8c2/COCO_val2014_000000562207.jpg", "model": "coco", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/73429dbf-1254-4e19-99c7-5cab7945f8c2/COCO_val2014_000000562207.jpg", model: "coco", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/73429dbf-1254-4e19-99c7-5cab7945f8c2/COCO_val2014_000000562207.jpg", "model": "coco", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/73429dbf-1254-4e19-99c7-5cab7945f8c2/COCO_val2014_000000562207.jpg", "model": "coco", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
A couple of people standing next to an elephant.{ "completed_at": "2021-10-09T20:11:49.762091Z", "created_at": "2021-10-09T20:11:48.242393Z", "data_removed": false, "error": null, "id": "hopopplhszeezcbos4mrk6lgre", "input": { "image": "https://replicate.delivery/mgxm/73429dbf-1254-4e19-99c7-5cab7945f8c2/COCO_val2014_000000562207.jpg", "model": "coco", "use_beam_search": false }, "logs": null, "metrics": { "total_time": 1.519698 }, "output": [ { "text": "A couple of people standing next to an elephant." } ], "started_at": "2021-12-20T08:08:34.993721Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/hopopplhszeezcbos4mrk6lgre", "cancel": "https://api.replicate.com/v1/predictions/hopopplhszeezcbos4mrk6lgre/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDdn5k5uosand3leo5apyacydg2yStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/ef235bdc-d2dd-466a-b356-9e3225aad9be/COCO_val2014_000000165547.jpg", "model": "coco", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/ef235bdc-d2dd-466a-b356-9e3225aad9be/COCO_val2014_000000165547.jpg", model: "coco", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/ef235bdc-d2dd-466a-b356-9e3225aad9be/COCO_val2014_000000165547.jpg", "model": "coco", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/ef235bdc-d2dd-466a-b356-9e3225aad9be/COCO_val2014_000000165547.jpg", "model": "coco", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
A dining table and chairs in a room.{ "completed_at": "2021-10-09T20:12:13.523568Z", "created_at": "2021-10-09T20:12:11.354360Z", "data_removed": false, "error": null, "id": "dn5k5uosand3leo5apyacydg2y", "input": { "image": "https://replicate.delivery/mgxm/ef235bdc-d2dd-466a-b356-9e3225aad9be/COCO_val2014_000000165547.jpg", "model": "coco", "use_beam_search": false }, "logs": null, "metrics": {}, "output": [ { "text": "A dining table and chairs in a room." } ], "started_at": null, "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/dn5k5uosand3leo5apyacydg2y", "cancel": "https://api.replicate.com/v1/predictions/dn5k5uosand3leo5apyacydg2y/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDrwlidpfkbzfmpcsnzwei4maivmStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/1000c3e5-c3f2-4a44-9ad3-8c33f59bb3a6/COCO_val2014_000000354533.jpg", "model": "coco", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/1000c3e5-c3f2-4a44-9ad3-8c33f59bb3a6/COCO_val2014_000000354533.jpg", model: "coco", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/1000c3e5-c3f2-4a44-9ad3-8c33f59bb3a6/COCO_val2014_000000354533.jpg", "model": "coco", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/1000c3e5-c3f2-4a44-9ad3-8c33f59bb3a6/COCO_val2014_000000354533.jpg", "model": "coco", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
A motorcycle parked on a dirt road near a fence.{ "completed_at": "2021-10-09T20:12:30.852311Z", "created_at": "2021-10-09T20:12:29.387427Z", "data_removed": false, "error": null, "id": "rwlidpfkbzfmpcsnzwei4maivm", "input": { "image": "https://replicate.delivery/mgxm/1000c3e5-c3f2-4a44-9ad3-8c33f59bb3a6/COCO_val2014_000000354533.jpg", "model": "coco", "use_beam_search": false }, "logs": null, "metrics": { "total_time": 1.464884 }, "output": [ { "text": "A motorcycle parked on a dirt road near a fence." } ], "started_at": "2021-12-20T09:52:54.016588Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/rwlidpfkbzfmpcsnzwei4maivm", "cancel": "https://api.replicate.com/v1/predictions/rwlidpfkbzfmpcsnzwei4maivm/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDu3rqaoxfcjc7bgs7e32izyhn3aStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/717831f6-cac5-43bd-9ba2-3714d3d1e3d8/COCO_val2014_000000386164.jpg", "model": "coco", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/717831f6-cac5-43bd-9ba2-3714d3d1e3d8/COCO_val2014_000000386164.jpg", model: "coco", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/717831f6-cac5-43bd-9ba2-3714d3d1e3d8/COCO_val2014_000000386164.jpg", "model": "coco", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/717831f6-cac5-43bd-9ba2-3714d3d1e3d8/COCO_val2014_000000386164.jpg", "model": "coco", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
A row of wooden cutting boards with wooden spoons.{ "completed_at": "2021-10-09T20:12:49.703514Z", "created_at": "2021-10-09T20:12:47.460266Z", "data_removed": false, "error": null, "id": "u3rqaoxfcjc7bgs7e32izyhn3a", "input": { "image": "https://replicate.delivery/mgxm/717831f6-cac5-43bd-9ba2-3714d3d1e3d8/COCO_val2014_000000386164.jpg", "model": "coco", "use_beam_search": false }, "logs": null, "metrics": {}, "output": [ { "text": "A row of wooden cutting boards with wooden spoons." } ], "started_at": null, "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/u3rqaoxfcjc7bgs7e32izyhn3a", "cancel": "https://api.replicate.com/v1/predictions/u3rqaoxfcjc7bgs7e32izyhn3a/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDcz4q2c6pn5hnjiitl434dksplaStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/ba2bb931-4b66-4ba9-a60a-1f97ea490fd6/COCO_val2014_000000386164.jpg", "model": "conceptual-captions", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/ba2bb931-4b66-4ba9-a60a-1f97ea490fd6/COCO_val2014_000000386164.jpg", model: "conceptual-captions", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/ba2bb931-4b66-4ba9-a60a-1f97ea490fd6/COCO_val2014_000000386164.jpg", "model": "conceptual-captions", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/ba2bb931-4b66-4ba9-a60a-1f97ea490fd6/COCO_val2014_000000386164.jpg", "model": "conceptual-captions", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
wooden spoons on a wooden table.{ "completed_at": "2021-10-09T20:13:24.433988Z", "created_at": "2021-10-09T20:13:22.748825Z", "data_removed": false, "error": null, "id": "cz4q2c6pn5hnjiitl434dkspla", "input": { "image": "https://replicate.delivery/mgxm/ba2bb931-4b66-4ba9-a60a-1f97ea490fd6/COCO_val2014_000000386164.jpg", "model": "conceptual-captions", "use_beam_search": false }, "logs": null, "metrics": {}, "output": [ { "text": "wooden spoons on a wooden table." } ], "started_at": null, "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/cz4q2c6pn5hnjiitl434dkspla", "cancel": "https://api.replicate.com/v1/predictions/cz4q2c6pn5hnjiitl434dkspla/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDcols6f74xbgczcgbwk5ccmty5qStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/9057f2c5-b59e-43e6-849b-a17797f1280d/CONCEPTUAL_01.jpg", "model": "conceptual-captions", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/9057f2c5-b59e-43e6-849b-a17797f1280d/CONCEPTUAL_01.jpg", model: "conceptual-captions", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/9057f2c5-b59e-43e6-849b-a17797f1280d/CONCEPTUAL_01.jpg", "model": "conceptual-captions", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/9057f2c5-b59e-43e6-849b-a17797f1280d/CONCEPTUAL_01.jpg", "model": "conceptual-captions", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
3d render of a man holding a globe.{ "completed_at": "2021-10-09T20:13:42.903107Z", "created_at": "2021-10-09T20:13:41.410362Z", "data_removed": false, "error": null, "id": "cols6f74xbgczcgbwk5ccmty5q", "input": { "image": "https://replicate.delivery/mgxm/9057f2c5-b59e-43e6-849b-a17797f1280d/CONCEPTUAL_01.jpg", "model": "conceptual-captions", "use_beam_search": false }, "logs": null, "metrics": {}, "output": [ { "text": "3d render of a man holding a globe." } ], "started_at": null, "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/cols6f74xbgczcgbwk5ccmty5q", "cancel": "https://api.replicate.com/v1/predictions/cols6f74xbgczcgbwk5ccmty5q/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDx4etf525kfa6hamm66jkqn6mqiStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/404e8b7c-53bf-4f2c-8bb1-79cf9cf2aabc/CONCEPTUAL_02.jpg", "model": "conceptual-captions", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/404e8b7c-53bf-4f2c-8bb1-79cf9cf2aabc/CONCEPTUAL_02.jpg", model: "conceptual-captions", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/404e8b7c-53bf-4f2c-8bb1-79cf9cf2aabc/CONCEPTUAL_02.jpg", "model": "conceptual-captions", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/404e8b7c-53bf-4f2c-8bb1-79cf9cf2aabc/CONCEPTUAL_02.jpg", "model": "conceptual-captions", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
students enjoying the cherry blossoms.{ "completed_at": "2021-10-09T20:14:02.770112Z", "created_at": "2021-10-09T20:14:01.166962Z", "data_removed": false, "error": null, "id": "x4etf525kfa6hamm66jkqn6mqi", "input": { "image": "https://replicate.delivery/mgxm/404e8b7c-53bf-4f2c-8bb1-79cf9cf2aabc/CONCEPTUAL_02.jpg", "model": "conceptual-captions", "use_beam_search": false }, "logs": null, "metrics": {}, "output": [ { "text": "students enjoying the cherry blossoms." } ], "started_at": null, "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/x4etf525kfa6hamm66jkqn6mqi", "cancel": "https://api.replicate.com/v1/predictions/x4etf525kfa6hamm66jkqn6mqi/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDhx4lb2muwjfnra4lbdo4relojyStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/284cdf4f-a0fb-4afc-b9b8-5006fd9e7fd5/CONCEPTUAL_03.jpg", "model": "conceptual-captions", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/284cdf4f-a0fb-4afc-b9b8-5006fd9e7fd5/CONCEPTUAL_03.jpg", model: "conceptual-captions", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/284cdf4f-a0fb-4afc-b9b8-5006fd9e7fd5/CONCEPTUAL_03.jpg", "model": "conceptual-captions", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/284cdf4f-a0fb-4afc-b9b8-5006fd9e7fd5/CONCEPTUAL_03.jpg", "model": "conceptual-captions", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
green leaf of lettuce on a white plate.{ "completed_at": "2021-10-09T20:14:30.184824Z", "created_at": "2021-10-09T20:14:28.717399Z", "data_removed": false, "error": null, "id": "hx4lb2muwjfnra4lbdo4relojy", "input": { "image": "https://replicate.delivery/mgxm/284cdf4f-a0fb-4afc-b9b8-5006fd9e7fd5/CONCEPTUAL_03.jpg", "model": "conceptual-captions", "use_beam_search": false }, "logs": null, "metrics": { "total_time": 1.467425 }, "output": [ { "text": "green leaf of lettuce on a white plate." } ], "started_at": "2022-04-24T01:35:17.069942Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/hx4lb2muwjfnra4lbdo4relojy", "cancel": "https://api.replicate.com/v1/predictions/hx4lb2muwjfnra4lbdo4relojy/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633ID63iqnqsfyjbjzenj7xj7g47knqStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/a6ede1ae-e2fe-43fe-b438-ba31eae65c43/CONCEPTUAL_04.jpg", "model": "conceptual-captions", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/a6ede1ae-e2fe-43fe-b438-ba31eae65c43/CONCEPTUAL_04.jpg", model: "conceptual-captions", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/a6ede1ae-e2fe-43fe-b438-ba31eae65c43/CONCEPTUAL_04.jpg", "model": "conceptual-captions", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/a6ede1ae-e2fe-43fe-b438-ba31eae65c43/CONCEPTUAL_04.jpg", "model": "conceptual-captions", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
the hotel and casino on the waterfront.{ "completed_at": "2021-10-09T20:14:39.341453Z", "created_at": "2021-10-09T20:14:37.466304Z", "data_removed": false, "error": null, "id": "63iqnqsfyjbjzenj7xj7g47knq", "input": { "image": "https://replicate.delivery/mgxm/a6ede1ae-e2fe-43fe-b438-ba31eae65c43/CONCEPTUAL_04.jpg", "model": "conceptual-captions", "use_beam_search": false }, "logs": null, "metrics": {}, "output": [ { "text": "the hotel and casino on the waterfront." } ], "started_at": null, "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/63iqnqsfyjbjzenj7xj7g47knq", "cancel": "https://api.replicate.com/v1/predictions/63iqnqsfyjbjzenj7xj7g47knq/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDek6xau3alzhmxjph2twglbf6pqStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/e14d4856-4a0f-409c-b89a-5be38f97dbbe/CONCEPTUAL_05.jpg", "model": "conceptual-captions", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/e14d4856-4a0f-409c-b89a-5be38f97dbbe/CONCEPTUAL_05.jpg", model: "conceptual-captions", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/e14d4856-4a0f-409c-b89a-5be38f97dbbe/CONCEPTUAL_05.jpg", "model": "conceptual-captions", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/e14d4856-4a0f-409c-b89a-5be38f97dbbe/CONCEPTUAL_05.jpg", "model": "conceptual-captions", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
the triangle is a symbol of the soul.{ "completed_at": "2021-10-09T20:14:47.555436Z", "created_at": "2021-10-09T20:14:46.160854Z", "data_removed": false, "error": null, "id": "ek6xau3alzhmxjph2twglbf6pq", "input": { "image": "https://replicate.delivery/mgxm/e14d4856-4a0f-409c-b89a-5be38f97dbbe/CONCEPTUAL_05.jpg", "model": "conceptual-captions", "use_beam_search": false }, "logs": null, "metrics": {}, "output": [ { "text": "the triangle is a symbol of the soul." } ], "started_at": null, "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/ek6xau3alzhmxjph2twglbf6pq", "cancel": "https://api.replicate.com/v1/predictions/ek6xau3alzhmxjph2twglbf6pq/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Prediction
rmokady/clip_prefix_caption:9a34a633IDwwvvdbyjvjbobc5fx4qffcem4aStatusSucceededSourceWebHardware–Total duration–CreatedInput
{ "image": "https://replicate.delivery/mgxm/d699e131-b9c1-4a9a-964a-2739c525218b/CONCEPTUAL_06.jpg", "model": "conceptual-captions", "use_beam_search": false }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", { input: { image: "https://replicate.delivery/mgxm/d699e131-b9c1-4a9a-964a-2739c525218b/CONCEPTUAL_06.jpg", model: "conceptual-captions", use_beam_search: false } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run rmokady/clip_prefix_caption using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "rmokady/clip_prefix_caption:9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", input={ "image": "https://replicate.delivery/mgxm/d699e131-b9c1-4a9a-964a-2739c525218b/CONCEPTUAL_06.jpg", "model": "conceptual-captions", "use_beam_search": False } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run rmokady/clip_prefix_caption 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": "9a34a6339872a03f45236f114321fb51fc7aa8269d38ae0ce5334969981e4cd8", "input": { "image": "https://replicate.delivery/mgxm/d699e131-b9c1-4a9a-964a-2739c525218b/CONCEPTUAL_06.jpg", "model": "conceptual-captions", "use_beam_search": false } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
cartoon boy in the bath.{ "completed_at": "2021-10-09T20:14:56.948387Z", "created_at": "2021-10-09T20:14:55.505290Z", "data_removed": false, "error": null, "id": "wwvvdbyjvjbobc5fx4qffcem4a", "input": { "image": "https://replicate.delivery/mgxm/d699e131-b9c1-4a9a-964a-2739c525218b/CONCEPTUAL_06.jpg", "model": "conceptual-captions", "use_beam_search": false }, "logs": null, "metrics": { "total_time": 1.443097 }, "output": [ { "text": "cartoon boy in the bath." } ], "started_at": "2022-02-03T03:25:04.784741Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/wwvvdbyjvjbobc5fx4qffcem4a", "cancel": "https://api.replicate.com/v1/predictions/wwvvdbyjvjbobc5fx4qffcem4a/cancel" }, "version": "d703881e7b50eb009779b7e1e79d394639df0af71be28c4100f88c03fdccdbf0" }
Want to make some of these yourself?
Run this model