ooxoo / google-cloud-ml-engine
Cloud ML Engine Client for PHP
This package's canonical repository appears to be gone and the package has been frozen as a result.
1.1.0
2018-12-20 12:47 UTC
Requires
- google/cloud-core: ^1.23
Requires (Dev)
- phpunit/phpunit: ^7.4
This package is auto-updated.
Last update: 2022-06-20 19:59:19 UTC
README
Please help to improve this library until Google provides an official php library.
Installation
NOTE This package is not intended for direct use. It provides common infrastructure to the rest of the Google Cloud PHP components.
$ composer require ooxoo/google-cloud-ml-engine
Authentication
Please see the Authentication guide for more information on authenticating your client. Once authenticated, you'll be ready to start making requests.
Sample
require 'vendor/autoload.php'; use Ooxoo\GCloud\MLEngine\MLEngineClient; $client = new MLEngineClient(); $bucket = $storage->bucket('my_bucket'); // Upload a file to the bucket. $client->predict( 'ml_engine_model', [ [ { "label": "beach", "scores": [0.1, 0.9] }, { "label": "car", "scores": [0.75, 0.25] } ] ] ));
Next Steps
- Understand the official documentation.