Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/google-cloud-platform/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google cloud platform Google AutoML Vision API和Google Vision API自定义算法_Google Cloud Platform_Google Cloud Vision_Google Cloud Automl - Fatal编程技术网

Google cloud platform Google AutoML Vision API和Google Vision API自定义算法

Google cloud platform Google AutoML Vision API和Google Vision API自定义算法,google-cloud-platform,google-cloud-vision,google-cloud-automl,Google Cloud Platform,Google Cloud Vision,Google Cloud Automl,我正在看Google AutoML Vision API和Google Vision API。我知道,如果您使用Google AutoML Vision API,它是一个自定义模型,因为您根据自己的图像训练ML模型,并定义自己的标签。当使用Google Vision API时,您使用的是预训练模型 然而,我想知道是否有可能使用我自己的算法(我创建的算法,不是谷歌提供的),并将其用于Vision/AutoML Vision API 当然,您完全可以在谷歌云上部署自己的ML算法,而无需依赖Visio

我正在看Google AutoML Vision API和Google Vision API。我知道,如果您使用Google AutoML Vision API,它是一个自定义模型,因为您根据自己的图像训练ML模型,并定义自己的标签。当使用Google Vision API时,您使用的是预训练模型


然而,我想知道是否有可能使用我自己的算法(我创建的算法,不是谷歌提供的),并将其用于Vision/AutoML Vision API

当然,您完全可以在谷歌云上部署自己的ML算法,而无需依赖Vision或AutoML API

对于同一个用例,我多次使用了两种方法:

  • 无服务器方法,如果您的模型在计算资源需求方面相对较轻,则部署您自己的自定义云功能。更多信息。 更具体地说,它的工作方式是只调用云函数,直接传递映像(base64或指向存储位置)。然后,该函数会自动分配所有必需的资源(自动),运行自定义算法处理图像和/或运行推断,将结果发送回并消失(所有资源已释放,不再需要运行成本)。整洁:)

  • 谷歌人工智能平台。更多信息

  • 使用AI平台对机器学习模型进行大规模训练,在云中托管经过训练的模型,并使用模型对新数据进行预测

    毫无疑问,可以选择AI平台,因为整个管道都很适合您的任何自定义代码/模型。非常适合在生产中部署