How to use the azure-cognitiveservices-vision-customvision.azure.cognitiveservices.vision.customvision.prediction.custom_vision_prediction_client.CustomVisionPredictionClientConfiguration function in azure-cognitiveservices-vision-customvision

To help you get started, we’ve selected a few azure-cognitiveservices-vision-customvision examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-cognitiveservices-vision-customvision / azure / cognitiveservices / vision / customvision / prediction / custom_vision_prediction_client.py View on Github external
def __init__(
            self, api_key, endpoint):

        if api_key is None:
            raise ValueError("Parameter 'api_key' must not be None.")
        if endpoint is None:
            raise ValueError("Parameter 'endpoint' must not be None.")
        base_url = '{Endpoint}/customvision/v3.0/prediction'

        super(CustomVisionPredictionClientConfiguration, self).__init__(base_url)

        self.add_user_agent('azure-cognitiveservices-vision-customvision/{}'.format(VERSION))

        self.api_key = api_key
        self.endpoint = endpoint
github Azure / azure-sdk-for-python / azure-cognitiveservices-vision-customvision / azure / cognitiveservices / vision / customvision / prediction / custom_vision_prediction_client.py View on Github external
def __init__(
            self, api_key, endpoint):

        self.config = CustomVisionPredictionClientConfiguration(api_key, endpoint)
        super(CustomVisionPredictionClient, self).__init__(None, self.config)

        client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
        self.api_version = '3.0'
        self._serialize = Serializer(client_models)
        self._deserialize = Deserializer(client_models)

azure-cognitiveservices-vision-customvision

Microsoft Azure Custom Vision Client Library for Python

MIT
Latest version published 4 years ago

Package Health Score

72 / 100
Full package analysis

Popular azure-cognitiveservices-vision-customvision functions

Similar packages