Run an Instant Model

Roboflow Instantモデルは、Python SDKおよびServerless Hosted API V2を使用して実行できます。

Instantモデルを実行するには、以下のコードを使用してください:

from inference_sdk import InferenceHTTPClient, InferenceConfiguration

CLIENT = InferenceHTTPClient(
    api_url="https://serverless.roboflow.com",
    api_key="<Your API Key>",
    
)

configuration = InferenceConfiguration(
    confidence_threshold=0.95
)

CLIENT.configure(configuration)

result = client.infer("image.jpeg", model_id="model-id/1")

print(result)

上記で、ご自身の model ID および API key.

このコードはモデルを実行し、結果を返します。

Confidence thresholdはInstantモデルで敏感に働く場合があります。最適なconfidenceは、モデルが学習した画像数によって異なります。最適なconfidence thresholdは通常0.85から0.99の範囲です。

Last updated

Was this helpful?