stphtan94117
/
taiwan-licence-plate-recognition
- Public
- 273 runs
-
T4
Prediction
stphtan94117/taiwan-licence-plate-recognition:38f8ac22IDheuajs3b36vg4ztnsbf5vjck2aStatusSucceededSourceWebHardwareA100 (80GB)Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/J9IrYulgJ1TPTi9sVVI7aF4WCxLfbqn9ykBcqk7rFyduDcgp/DHwnlihU0AAwxXS.jpg" }
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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", { input: { image: "https://replicate.delivery/pbxt/J9IrYulgJ1TPTi9sVVI7aF4WCxLfbqn9ykBcqk7rFyduDcgp/DHwnlihU0AAwxXS.jpg" } } ); 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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", input={ "image": "https://replicate.delivery/pbxt/J9IrYulgJ1TPTi9sVVI7aF4WCxLfbqn9ykBcqk7rFyduDcgp/DHwnlihU0AAwxXS.jpg" } ) 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 stphtan94117/taiwan-licence-plate-recognition 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": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", "input": { "image": "https://replicate.delivery/pbxt/J9IrYulgJ1TPTi9sVVI7aF4WCxLfbqn9ykBcqk7rFyduDcgp/DHwnlihU0AAwxXS.jpg" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-07-10T15:13:25.308888Z", "created_at": "2023-07-10T15:13:23.644173Z", "data_removed": false, "error": null, "id": "heuajs3b36vg4ztnsbf5vjck2a", "input": { "image": "https://replicate.delivery/pbxt/J9IrYulgJ1TPTi9sVVI7aF4WCxLfbqn9ykBcqk7rFyduDcgp/DHwnlihU0AAwxXS.jpg" }, "logs": null, "metrics": { "predict_time": 1.623804, "total_time": 1.664715 }, "output": [ { "licence_plate": "https://replicate.delivery/pbxt/SwzBrajHgVoMHV2O4WR9UvKcCr8fQM5aUYn2Q3CHEkRKkOnIA/tmpf2fi48z8DHwnlihU0AAwxXS_plate0.jpg", "license_plate_number": "2R0872" }, { "licence_plate": "https://replicate.delivery/pbxt/6BzqzennKUxgJabE9aRmGeA1KeacIHfrMM8AtG9xf1FqCpzJC/tmpf2fi48z8DHwnlihU0AAwxXS_plate1.jpg", "license_plate_number": "7777PS" } ], "started_at": "2023-07-10T15:13:23.685084Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/heuajs3b36vg4ztnsbf5vjck2a", "cancel": "https://api.replicate.com/v1/predictions/heuajs3b36vg4ztnsbf5vjck2a/cancel" }, "version": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127" }
Generated inPrediction
stphtan94117/taiwan-licence-plate-recognition:38f8ac22IDcfn4tbjb7za5febd6ndoqkjkj4StatusSucceededSourceWebHardwareT4Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/J97HjwmUukdoKSlUfhcwWtEflj7K6UGkuYziFIEcN1EP0pSm/7.jpg" }
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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", { input: { image: "https://replicate.delivery/pbxt/J97HjwmUukdoKSlUfhcwWtEflj7K6UGkuYziFIEcN1EP0pSm/7.jpg" } } ); 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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", input={ "image": "https://replicate.delivery/pbxt/J97HjwmUukdoKSlUfhcwWtEflj7K6UGkuYziFIEcN1EP0pSm/7.jpg" } ) 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 stphtan94117/taiwan-licence-plate-recognition 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": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", "input": { "image": "https://replicate.delivery/pbxt/J97HjwmUukdoKSlUfhcwWtEflj7K6UGkuYziFIEcN1EP0pSm/7.jpg" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-07-10T02:35:51.650112Z", "created_at": "2023-07-10T02:35:50.484302Z", "data_removed": false, "error": null, "id": "cfn4tbjb7za5febd6ndoqkjkj4", "input": { "image": "https://replicate.delivery/pbxt/J97HjwmUukdoKSlUfhcwWtEflj7K6UGkuYziFIEcN1EP0pSm/7.jpg" }, "logs": null, "metrics": { "predict_time": 1.195128, "total_time": 1.16581 }, "output": [ { "licence_plate": "https://replicate.delivery/pbxt/KisUWKiozu6uE5teRhq2FSU2QsLDscecz2S2henYyTgOEkciA/tmplbv7v0ex7_plate0.jpg", "license_plate_number": "AFA3090" }, { "licence_plate": "https://replicate.delivery/pbxt/9GsAV88xFl6YMNZyidYVQ8ON8czUgTmxwGshzHOZ9e5DBJnIA/tmplbv7v0ex7_plate1.jpg", "license_plate_number": "EWA5981" }, { "licence_plate": "https://replicate.delivery/pbxt/RKWBneOwD11EeUtjuBOtYfLMZlVZQfHZvsCIffEO8Nq3hgkTE/tmplbv7v0ex7_plate2.jpg", "license_plate_number": "203JUT" } ], "started_at": "2023-07-10T02:35:50.454984Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/cfn4tbjb7za5febd6ndoqkjkj4", "cancel": "https://api.replicate.com/v1/predictions/cfn4tbjb7za5febd6ndoqkjkj4/cancel" }, "version": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127" }
Generated inPrediction
stphtan94117/taiwan-licence-plate-recognition:38f8ac22ID6flqcorbh57xs6h27ha5e3n6byStatusSucceededSourceWebHardwareT4Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/J97HvAsgxGMz1pz6HTOd5dTGjXBuyny8pa3JOMfXwL4qLGoB/1.jpg" }
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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", { input: { image: "https://replicate.delivery/pbxt/J97HvAsgxGMz1pz6HTOd5dTGjXBuyny8pa3JOMfXwL4qLGoB/1.jpg" } } ); 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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", input={ "image": "https://replicate.delivery/pbxt/J97HvAsgxGMz1pz6HTOd5dTGjXBuyny8pa3JOMfXwL4qLGoB/1.jpg" } ) 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 stphtan94117/taiwan-licence-plate-recognition 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": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", "input": { "image": "https://replicate.delivery/pbxt/J97HvAsgxGMz1pz6HTOd5dTGjXBuyny8pa3JOMfXwL4qLGoB/1.jpg" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-07-10T02:36:02.309855Z", "created_at": "2023-07-10T02:36:01.194367Z", "data_removed": false, "error": null, "id": "6flqcorbh57xs6h27ha5e3n6by", "input": { "image": "https://replicate.delivery/pbxt/J97HvAsgxGMz1pz6HTOd5dTGjXBuyny8pa3JOMfXwL4qLGoB/1.jpg" }, "logs": null, "metrics": { "predict_time": 1.140315, "total_time": 1.115488 }, "output": [ { "licence_plate": "https://replicate.delivery/pbxt/5TmFaNKzn5pCCJsxEsbGDYBaTqWJCnnwGnHhPKqWCyZkgkTE/tmpbdie0v0v1_plate0.jpg", "license_plate_number": "BMG3016" }, { "licence_plate": "https://replicate.delivery/pbxt/uGKGoFgkspJHBpXzwCCMSMGy1GemCHKWDhFe4eNgoNJkEkciA/tmpbdie0v0v1_plate1.jpg", "license_plate_number": "BMZ5052" }, { "licence_plate": "https://replicate.delivery/pbxt/d3Oy2O89M0oxIx6w0BBzJbwgkqLoZzAcvUngpMUMNnmkgkTE/tmpbdie0v0v1_plate2.jpg", "license_plate_number": "9925P8" } ], "started_at": "2023-07-10T02:36:01.169540Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/6flqcorbh57xs6h27ha5e3n6by", "cancel": "https://api.replicate.com/v1/predictions/6flqcorbh57xs6h27ha5e3n6by/cancel" }, "version": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127" }
Generated inPrediction
stphtan94117/taiwan-licence-plate-recognition:38f8ac22IDl24todrbuo5dhrmyfykwxqmimiStatusSucceededSourceWebHardwareT4Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/J97I8vJzjfUjJEAqs2LmvcsizTmQD0GZykYBmT8rXj010XYw/2.jpg" }
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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", { input: { image: "https://replicate.delivery/pbxt/J97I8vJzjfUjJEAqs2LmvcsizTmQD0GZykYBmT8rXj010XYw/2.jpg" } } ); 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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", input={ "image": "https://replicate.delivery/pbxt/J97I8vJzjfUjJEAqs2LmvcsizTmQD0GZykYBmT8rXj010XYw/2.jpg" } ) 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 stphtan94117/taiwan-licence-plate-recognition 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": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", "input": { "image": "https://replicate.delivery/pbxt/J97I8vJzjfUjJEAqs2LmvcsizTmQD0GZykYBmT8rXj010XYw/2.jpg" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-07-10T02:36:15.016279Z", "created_at": "2023-07-10T02:36:14.363479Z", "data_removed": false, "error": null, "id": "l24todrbuo5dhrmyfykwxqmimi", "input": { "image": "https://replicate.delivery/pbxt/J97I8vJzjfUjJEAqs2LmvcsizTmQD0GZykYBmT8rXj010XYw/2.jpg" }, "logs": null, "metrics": { "predict_time": 0.682401, "total_time": 0.6528 }, "output": [ { "licence_plate": "https://replicate.delivery/pbxt/0lZCLeJ3QoVpVKAjwqD88wilpthQEdW1wHcPd2hGO9DPBJnIA/tmp7vrx26zq2_plate0.jpg", "license_plate_number": "2115JK" } ], "started_at": "2023-07-10T02:36:14.333878Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/l24todrbuo5dhrmyfykwxqmimi", "cancel": "https://api.replicate.com/v1/predictions/l24todrbuo5dhrmyfykwxqmimi/cancel" }, "version": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127" }
Generated inPrediction
stphtan94117/taiwan-licence-plate-recognition:38f8ac22ID3fueiazbbjhmfacca3bgdqgf5uStatusSucceededSourceWebHardwareT4Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/J97IJ5PkxL4IJzhvnlJ5NhvW8PB7RSIKq62esrG2TAmERTcZ/3.jpg" }
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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", { input: { image: "https://replicate.delivery/pbxt/J97IJ5PkxL4IJzhvnlJ5NhvW8PB7RSIKq62esrG2TAmERTcZ/3.jpg" } } ); 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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", input={ "image": "https://replicate.delivery/pbxt/J97IJ5PkxL4IJzhvnlJ5NhvW8PB7RSIKq62esrG2TAmERTcZ/3.jpg" } ) 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 stphtan94117/taiwan-licence-plate-recognition 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": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", "input": { "image": "https://replicate.delivery/pbxt/J97IJ5PkxL4IJzhvnlJ5NhvW8PB7RSIKq62esrG2TAmERTcZ/3.jpg" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-07-10T02:36:26.641050Z", "created_at": "2023-07-10T02:36:25.872693Z", "data_removed": false, "error": null, "id": "3fueiazbbjhmfacca3bgdqgf5u", "input": { "image": "https://replicate.delivery/pbxt/J97IJ5PkxL4IJzhvnlJ5NhvW8PB7RSIKq62esrG2TAmERTcZ/3.jpg" }, "logs": null, "metrics": { "predict_time": 0.817366, "total_time": 0.768357 }, "output": [ { "licence_plate": "https://replicate.delivery/pbxt/SxDlhkqRwCoYI51kOLYQY7dNm26yrPwlkLS4UEvY7auqgkTE/tmp6st2caaq3_plate0.jpg", "license_plate_number": "035NRQ" }, { "licence_plate": "https://replicate.delivery/pbxt/Z93jWetg9oXTP6khhqeaUx7UYse3zwClnUwVRUv0LUTVFkciA/tmp6st2caaq3_plate1.jpg", "license_plate_number": "791MMM" } ], "started_at": "2023-07-10T02:36:25.823684Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/3fueiazbbjhmfacca3bgdqgf5u", "cancel": "https://api.replicate.com/v1/predictions/3fueiazbbjhmfacca3bgdqgf5u/cancel" }, "version": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127" }
Generated inPrediction
stphtan94117/taiwan-licence-plate-recognition:38f8ac22IDiresewjbvs6i5pr5patbljkxnqStatusSucceededSourceWebHardwareT4Total durationCreatedInput
{ "image": "https://replicate.delivery/pbxt/J97IbTkG4RGY3rB1ZZAPkQFhQ4QHG2a4hT8kyYUxJuZXj1LO/9.jpg" }
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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", { input: { image: "https://replicate.delivery/pbxt/J97IbTkG4RGY3rB1ZZAPkQFhQ4QHG2a4hT8kyYUxJuZXj1LO/9.jpg" } } ); 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 stphtan94117/taiwan-licence-plate-recognition using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "stphtan94117/taiwan-licence-plate-recognition:38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", input={ "image": "https://replicate.delivery/pbxt/J97IbTkG4RGY3rB1ZZAPkQFhQ4QHG2a4hT8kyYUxJuZXj1LO/9.jpg" } ) 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 stphtan94117/taiwan-licence-plate-recognition 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": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127", "input": { "image": "https://replicate.delivery/pbxt/J97IbTkG4RGY3rB1ZZAPkQFhQ4QHG2a4hT8kyYUxJuZXj1LO/9.jpg" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2023-07-10T02:36:44.903484Z", "created_at": "2023-07-10T02:36:44.269685Z", "data_removed": false, "error": null, "id": "iresewjbvs6i5pr5patbljkxnq", "input": { "image": "https://replicate.delivery/pbxt/J97IbTkG4RGY3rB1ZZAPkQFhQ4QHG2a4hT8kyYUxJuZXj1LO/9.jpg" }, "logs": null, "metrics": { "predict_time": 0.662778, "total_time": 0.633799 }, "output": [ { "licence_plate": "https://replicate.delivery/pbxt/XdrFvnXOojbrPxNF1zM2CAZopI6FBQrT7cje1RMTPaAeCSORA/tmpbmpmu6ji9_plate0.jpg", "license_plate_number": "7275QX" } ], "started_at": "2023-07-10T02:36:44.240706Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/iresewjbvs6i5pr5patbljkxnq", "cancel": "https://api.replicate.com/v1/predictions/iresewjbvs6i5pr5patbljkxnq/cancel" }, "version": "38f8ac2275563bd275cf07a9e79c7e2f9b38d0850a4c10a4958efba8b2362127" }
Generated in
Want to make some of these yourself?
Run this model