Serverless Hosted API
Roboflow cloud में GPU-accelerated auto-scaling infrastructure पर Workflows और Model Inference चलाएँ।
Inference server
from inference_sdk import InferenceHTTPClient
CLIENT = InferenceHTTPClient(
# api_url="http://localhost:9001" # Self-hosted Inference server
api_url="https://serverless.roboflow.com", # हमारी Serverless hosted API
api_key="API_KEY" # आपके private models और data तक पहुँचने के लिए वैकल्पिक
)
result = CLIENT.infer("image.jpg", model_id="model-id/1")
print(result)सीमाएँ
अंतिम अपडेट
क्या यह उपयोगी था?