You're looking at a specific version of this model. Jump to the model overview.
Input
Run this model in Node.js with one line of code:
npm install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import Replicate from "replicate";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run replicate/resnet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"replicate/resnet:dd782a3d531b61af491d1026434392e8afb40bfb53b8af35f727e80661489767",
{
input: {
image: "https://replicate.delivery/mgxm/64ae6640-b109-4484-9c45-2e6bae918f56/cat.jpg"
}
}
);
console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import replicate
Run replicate/resnet using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"replicate/resnet:dd782a3d531b61af491d1026434392e8afb40bfb53b8af35f727e80661489767",
input={
"image": "https://replicate.delivery/mgxm/64ae6640-b109-4484-9c45-2e6bae918f56/cat.jpg"
}
)
print(output)
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run replicate/resnet 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": "dd782a3d531b61af491d1026434392e8afb40bfb53b8af35f727e80661489767",
"input": {
"image": "https://replicate.delivery/mgxm/64ae6640-b109-4484-9c45-2e6bae918f56/cat.jpg"
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
brew install cog
If you don’t have Homebrew, there are other installation options available.
Run this to download the model and run it in your local environment:
cog predict r8.im/replicate/resnet@sha256:dd782a3d531b61af491d1026434392e8afb40bfb53b8af35f727e80661489767 \
-i 'image="https://replicate.delivery/mgxm/64ae6640-b109-4484-9c45-2e6bae918f56/cat.jpg"'
To learn more, take a look at the Cog documentation.
Run this to download the model and run it in your local environment:
docker run -d -p 5000:5000 r8.im/replicate/resnet@sha256:dd782a3d531b61af491d1026434392e8afb40bfb53b8af35f727e80661489767
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "image": "https://replicate.delivery/mgxm/64ae6640-b109-4484-9c45-2e6bae918f56/cat.jpg" } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Output
{
"completed_at": "2022-05-17T02:17:27.651177Z",
"created_at": "2022-05-17T02:16:47.309508Z",
"data_removed": false,
"error": null,
"id": "disjucw2djbrhg5c5rzhegd2g4",
"input": {
"image": "https://replicate.delivery/mgxm/64ae6640-b109-4484-9c45-2e6bae918f56/cat.jpg"
},
"logs": "Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/imagenet_class_index.json\n\n16384/35363 [============>.................] - ETA: 0s\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\n40960/35363 [==================================] - 0s 0us/step\n\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\n49152/35363 [=========================================] - 0s 0us/step",
"metrics": {
"predict_time": 4.73821,
"total_time": 40.341669
},
"output": [
[
"n02123597",
"Siamese_cat",
0.8829364776611328
],
[
"n02123394",
"Persian_cat",
0.09810526669025421
],
[
"n02123045",
"tabby",
0.005758069921284914
]
],
"started_at": "2022-05-17T02:17:22.912967Z",
"status": "succeeded",
"urls": {
"get": "https://api.replicate.com/v1/predictions/disjucw2djbrhg5c5rzhegd2g4",
"cancel": "https://api.replicate.com/v1/predictions/disjucw2djbrhg5c5rzhegd2g4/cancel"
},
"version": "dd782a3d531b61af491d1026434392e8afb40bfb53b8af35f727e80661489767"
}
Downloading data from https://storage.googleapis.com/download.tensorflow.org/data/imagenet_class_index.json
16384/35363 [============>.................] - ETA:
40960/35363 [==================================] - 0s 0us/step
49152/35363 [=========================================] - 0s 0us/step