免费发布信息
微信公众号

如何用 PHP 访问人工智能模型?

   来源:黔优网责任编辑:优优  时间:2024-09-20 16:59:26 浏览量:0

在 php 中,使用 google cloud platform (gcp) php 客户库访问 ai 模型:安装 php 7.1 及以上版本。设置 google cloud sdk。通过 gcp 控制台启用 ai platform predictions api。使用 composer 安装 php 库。发送预测请求,包括项目 id、地区、端点 id 和 json 编码的预测实例。解析响应,获取预测结果和置信度分数。

如何用 PHP 访问人工智能模型

在 PHP 中,可以使用 Google Cloud Platform(GCP)提供的 PHP 客户库来访问 AI Platform Predictions 服务。该服务允许您向事先训练好的 AI 模型发送预测请求。

先决条件

安装 [PHP](https://www.php.net/) 7.1 或更高版本

配置 [Google Cloud SDK](https://cloud.google.com/sdk/)

启用 AI Platform Predictions API:[https://console.cloud.google.com/apis/dashboard](https://console.cloud.google.com/apis/dashboard)

安装 PHP 库

composer require google/cloud-aiplatform

运行一个预测实例

以下是一个用 PHP 向已部署的 AI 模型发送预测请求的示例:

<?php

use Google\Cloud\AIPlatform\V1\EndpointName;
use Google\Cloud\AIPlatform\V1\PredictSchemata\Prediction;
use Google\Cloud\AIPlatform\V1\PredictionServiceClient;
use Google\Protobuf\Any;


function predict(
    string $projectId,
    string $location,
    string $endpointId,
    array $instance
): void {
    $endpoint = new EndpointName($projectId, $location, $endpointId);

    // Convert JSON-encoded instance array(s) to PHP array(s).
    $convertedInstance = [];
    foreach ($instance as $instanceRow) {
        $convertedInstanceRow = json_decode($instanceRow);
        if ($convertedInstanceRow === null) {
            throw new \Exception('Invalid JSON in $instance.');
        }
        $convertedInstance[] = $convertedInstanceRow;
    }

    // Instantiation of a client.
    $clientOptions = ['apiEndpoint' => 'us-central1-aiplatform.googleapis.com:443'];
    $client = new PredictionServiceClient($clientOptions);

    // Set the parameters for the predict call.
    $parameters = [];
    $encodedInstance = new Any();
    $encodedInstance->pack(
        (new Prediction())
            ->setInstances($convertedInstance)
            ->setSerialize()
    );
    $parameters['instances'] = $encodedInstance;

    // Send the prediction request.
    $response = $client->predict($endpoint, $parameters);
    printf('Raw response: %s' . PHP_EOL, $response->serializeToJsonString());

    $predictionsResult = $response->getPredictions();
    printf(
        'Predicted class name(s): %s' . PHP_EOL,
        implode(', ', $predictionsResult[0]->getDisplayNames())
    );
    printf(
        'Predicted class score(s): %s' . PHP_EOL,
        implode(', ', $predictionsResult[0]->getConfidences())
    );
}

实战

要运行此示例,请将以下信息作为参数传递给 predict() 函数:

立即学习“PHP免费学习笔记(深入)”;

$projectId: 你的 GCP 项目 ID

$location: 你的 GCP 地区(例如“us-central1”)

$endpointId: 你的 AI Platform 端点的 ID(例如“12345”)

$instance: 一个包含一个或多个 JSON-编码预测实例的 PHP 数组

例如,以下命令将向部署在“us-central1”的“my-endpoint”中名为“my-model”的模型发送预测请求:

php predict my-project us-central1 my-endpoint '[{ "petal_length": 5.1, "petal_width": 3.5, "sepal_length": 1.4, "sepal_width": 0.2 }]'

此命令将打印出模型对给定实例的预测结果,包括预测的类别名称和置信度分数。

以上就是如何用 PHP 访问人工智能模型?的详细内容,更多请关注本网内其它相关文章!

 
 
 
没用 0举报 收藏 0
免责声明:
黔优网以上展示内容来源于用户自主上传、合作媒体、企业机构或网络收集整理,版权争议与本站无关,文章涉及见解与观点不代表黔优网官方立场,请读者仅做参考。本文标题:如何用 PHP 访问人工智能模型?,本文链接:https://www.qianu.com/help/43752.html,欢迎转载,转载时请说明出处。若您认为本文侵犯了您的版权信息,或您发现该内容有任何违法信息,请您立即点此【投诉举报】并提供有效线索,也可以通过邮件(邮箱号:kefu@qianu.com)联系我们及时修正或删除。
 
 

 

 
推荐图文
推荐帮助中心
最新帮助中心