Skip to content

Commit

Permalink
feat: adds enhancements to library (#22)
Browse files Browse the repository at this point in the history
* feat: adds enhancements to library

* chore: changes to synth.py

* fix: broken pack n' play test

* fix: add enhanced types to ts compiler

* fix: project enabled

* fix: adds docstrings to toValue(), fromValue() functions

* fix: removing any

* fix: edits to synth.py per reviewer

* fix: add more test coverage

* chore: added comment about conversion interface

Co-authored-by: Sofia Leon <sofialeon@google.com>
  • Loading branch information
telpirion and sofisl committed Dec 18, 2020
1 parent b9770cc commit bb76ec5
Show file tree
Hide file tree
Showing 8 changed files with 413 additions and 2 deletions.
135 changes: 135 additions & 0 deletions ai-platform/snippets/create-training-pipeline-image-classification.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

function main(
datasetId,
modelDisplayName,
trainingPipelineDisplayName,
project,
location = 'us-central1'
) {
// [START aiplatform_create_training_pipeline_image_classification]
/**
* TODO(developer): Uncomment these variables before running the sample.
* (Not necessary if passing values as arguments)
*/
/*
const datasetId = 'YOUR DATASET';
const modelDisplayName = 'NEW MODEL NAME;
const trainingPipelineDisplayName = 'NAME FOR TRAINING PIPELINE';
const project = 'YOUR PROJECT ID';
const location = 'us-central1';
*/
// Imports the Google Cloud Pipeline Service Client library
const aiplatform = require('@google-cloud/aiplatform');

const {
definition,
} = aiplatform.protos.google.cloud.aiplatform.v1beta1.schema.trainingjob;
const ModelType = definition.AutoMlImageClassificationInputs.ModelType;

// Specifies the location of the api endpoint
const clientOptions = {
apiEndpoint: 'us-central1-aiplatform.googleapis.com',
};

// Instantiates a client
const pipelineServiceClient = new aiplatform.PipelineServiceClient(
clientOptions
);

async function createTrainingPipelineImageClassification() {
// Configure the parent resource
const parent = `projects/${project}/locations/${location}`;

// Values should match the input expected by your model.
const trainingTaskInputsMessage = new definition.AutoMlImageClassificationInputs(
{
multiLabel: true,
modelType: ModelType.CLOUD,
budgetMilliNodeHours: 8000,
disableEarlyStopping: false,
}
);

const trainingTaskInputs = trainingTaskInputsMessage.toValue();

const trainingTaskDefinition =
'gs://google-cloud-aiplatform/schema/trainingjob/definition/automl_image_classification_1.0.0.yaml';

const modelToUpload = {displayName: modelDisplayName};
const inputDataConfig = {datasetId: datasetId};
const trainingPipeline = {
displayName: trainingPipelineDisplayName,
trainingTaskDefinition,
trainingTaskInputs,
inputDataConfig: inputDataConfig,
modelToUpload: modelToUpload,
};
const request = {
parent,
trainingPipeline,
};

// Create training pipeline request
const [response] = await pipelineServiceClient.createTrainingPipeline(
request
);

console.log('Create training pipeline image classification response');
console.log(`\tName : ${response.name}`);
console.log(`\tDisplay Name : ${response.displayName}`);
console.log(
`\tTraining task definition : ${response.trainingTaskDefinition}`
);
console.log(
`\tTraining task inputs : \
${JSON.stringify(response.trainingTaskInputs)}`
);
console.log(
`\tTraining task metadata : \
${JSON.stringify(response.trainingTaskMetadata)}`
);
console.log(`\tState ; ${response.state}`);
console.log(`\tCreate time : ${JSON.stringify(response.createTime)}`);
console.log(`\tStart time : ${JSON.stringify(response.startTime)}`);
console.log(`\tEnd time : ${JSON.stringify(response.endTime)}`);
console.log(`\tUpdate time : ${JSON.stringify(response.updateTime)}`);
console.log(`\tLabels : ${JSON.stringify(response.labels)}`);

const error = response.error;
console.log('\tError');
if (error === null) {
console.log('\t\tCode : {}');
console.log('\t\tMessage : {}');
} else {
console.log(`\t\tCode : ${error.code}`);
console.log(`\t\tMessage : ${error.message}`);
}
}

createTrainingPipelineImageClassification();
// [END aiplatform_create_training_pipeline_image_classification]
}

process.on('unhandledRejection', err => {
console.error(err.message);
process.exitCode = 1;
});

main(...process.argv.slice(2));
61 changes: 61 additions & 0 deletions ai-platform/snippets/list-endpoints.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/**
* Copyright 2020, Google, LLC.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

function main(projectId, location = 'us-central1') {
// [START aiplatform_list_endpoints]
/**
* TODO(developer): Uncomment these variables before running the sample.
*/
// const projectId = 'YOUR_PROJECT_ID';
// const location = 'YOUR_PROJECT_LOCATION';

const {EndpointServiceClient} = require('@google-cloud/aiplatform');

// Specifies the location of the api endpoint
const clientOptions = {
apiEndpoint: 'us-central1-aiplatform.googleapis.com',
};
const client = new EndpointServiceClient(clientOptions);

async function listEndpoints() {
// Configure the parent resource
const parent = `projects/${projectId}/locations/${location}`;
const request = {
parent,
};

// Get and print out a list of all the endpoints for this resource
const [result] = await client.listEndpoints(request);
for (const endpoint of result) {
console.log(`\nEndpoint name: ${endpoint.name}`);
console.log(`Display name: ${endpoint.displayName}`);
if (endpoint.deployedModels[0]) {
console.log(
`First deployed model: ${endpoint.deployedModels[0].model}`
);
}
}
}

listEndpoints();
// [END aiplatform_list_endpoints]
}

main(...process.argv.slice(2)).catch(err => {
console.error(err);
process.exitCode = 1;
});
4 changes: 3 additions & 1 deletion ai-platform/snippets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
"@google-cloud/aiplatform": "^1.0.0"
},
"devDependencies": {
"mocha": "^8.0.0"
"chai": "^4.2.0",
"mocha": "^8.0.0",
"uuid": "^8.3.1"
}
}
99 changes: 99 additions & 0 deletions ai-platform/snippets/predict-image-classification.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

function main(filename, endpointId, project, location = 'us-central1') {
// [START aiplatform_predict_image_classification]
/**
* TODO(developer): Uncomment these variables before running the sample.\
* (Not necessary if passing values as arguments)
*/

// const filename = "YOUR_PREDICTION_FILE_NAME";
// const endpointId = "YOUR_ENDPOINT_ID";
// const project = 'YOUR_PROJECT_ID';
// const location = 'YOUR_PROJECT_LOCATION';
const aiplatform = require('@google-cloud/aiplatform');
const {
instance,
params,
prediction,
} = aiplatform.protos.google.cloud.aiplatform.v1beta1.schema.predict;

// Imports the Google Cloud Prediction Service Client library
const {PredictionServiceClient} = aiplatform;

// Specifies the location of the api endpoint
const clientOptions = {
apiEndpoint: 'us-central1-prediction-aiplatform.googleapis.com',
};

// Instantiates a client
const predictionServiceClient = new PredictionServiceClient(clientOptions);

async function predictImageClassification() {
// Configure the endpoint resource
const endpoint = `projects/${project}/locations/${location}/endpoints/${endpointId}`;

const parametersObj = new params.ImageClassificationPredictionParams({
confidenceThreshold: 0.5,
maxPredictions: 5,
});
const parameters = parametersObj.toValue();

const fs = require('fs');
const image = fs.readFileSync(filename, 'base64');
const instanceObj = new instance.ImageClassificationPredictionInstance({
content: image,
});
const instanceValue = instanceObj.toValue();

const instances = [instanceValue];
const request = {
endpoint,
instances,
parameters,
};

// Predict request
const [response] = await predictionServiceClient.predict(request);

console.log('Predict image classification response');
console.log(`\tDeployed model id : ${response.deployedModelId}`);
const predictions = response.predictions;
console.log('\tPredictions :');
for (const predictionValue of predictions) {
const predictionResultObj = prediction.ClassificationPredictionResult.fromValue(
predictionValue
);
for (const [i, label] of predictionResultObj.displayNames.entries()) {
console.log(`\tDisplay name: ${label}`);
console.log(`\tConfidences: ${predictionResultObj.confidences[i]}`);
console.log(`\tIDs: ${predictionResultObj.ids[i]}\n\n`);
}
}
}
predictImageClassification();
// [END aiplatform_predict_image_classification]
}

process.on('unhandledRejection', err => {
console.error(err.message);
process.exitCode = 1;
});

main(...process.argv.slice(2));
Binary file added ai-platform/snippets/resources/daisy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

const {assert} = require('chai');
const {after, describe, it} = require('mocha');

const uuid = require('uuid').v4;
const cp = require('child_process');
const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'});

const aiplatform = require('@google-cloud/aiplatform');
const clientOptions = {
apiEndpoint: 'us-central1-aiplatform.googleapis.com',
};

const pipelineServiceClient = new aiplatform.PipelineServiceClient(
clientOptions
);

const datasetId = process.env.TRAINING_PIPELINE_IMAGE_CLASS_DATASET_ID;
const modelDisplayName = `temp_create_training_pipeline_image_classification_model_test${uuid()}`;
const trainingPipelineDisplayName = `temp_create_training_pipeline_image_classification_test_${uuid()}`;
const project = process.env.CAIP_PROJECT_ID;
const location = process.env.LOCATION;

let trainingPipelineId;

describe('AI platform create training pipeline image classification', () => {
it('should create a new image classification training pipeline', async () => {
const stdout = execSync(
`node ./create-training-pipeline-image-classification.js ${datasetId} ${modelDisplayName} ${trainingPipelineDisplayName} ${project} ${location}`
);
assert.match(stdout, /\/locations\/us-central1\/trainingPipelines\//);
trainingPipelineId = stdout
.split('/locations/us-central1/trainingPipelines/')[1]
.split('\n')[0];
});

after('should cancel the training pipeline and delete it', async () => {
const name = pipelineServiceClient.trainingPipelinePath(
project,
location,
trainingPipelineId
);

const cancelRequest = {
name,
};

pipelineServiceClient.cancelTrainingPipeline(cancelRequest).then(() => {
const deleteRequest = {
name,
};

return pipelineServiceClient.deleteTrainingPipeline(deleteRequest);
});
});
});
Loading

0 comments on commit bb76ec5

Please sign in to comment.