Skip to content

fix misspelling reported by user #1451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 12, 2019
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2018 Google Inc.
* Copyright 2018-19 Google LLC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can leave the license file as is, only need to update the year on new files and the java linter will throw an error as it expects a certain year and style based on the configuration.

*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -153,9 +153,9 @@ public static void listModels(String projectId, String computeRegion, String fil
System.out.println(String.format("Model display name: %s", model.getDisplayName()));
System.out.println("Image classification model metadata:");
System.out.println(
"Tranning budget: " + model.getImageClassificationModelMetadata().getTrainBudget());
"Training budget: " + model.getImageClassificationModelMetadata().getTrainBudget());
System.out.println(
"Tranning cost: " + model.getImageClassificationModelMetadata().getTrainCost());
"Training cost: " + model.getImageClassificationModelMetadata().getTrainCost());
System.out.println(
String.format(
"Stop reason: %s", model.getImageClassificationModelMetadata().getStopReason()));
Expand Down Expand Up @@ -197,9 +197,9 @@ public static void getModel(String projectId, String computeRegion, String model
System.out.println(String.format("Model display name: %s", model.getDisplayName()));
System.out.println("Image classification model metadata:");
System.out.println(
"Tranning budget: " + model.getImageClassificationModelMetadata().getTrainBudget());
"Training budget: " + model.getImageClassificationModelMetadata().getTrainBudget());
System.out.println(
"Tranning cost:" + model.getImageClassificationModelMetadata().getTrainCost());
"Training cost:" + model.getImageClassificationModelMetadata().getTrainCost());
System.out.println(
String.format(
"Stop reason: %s", model.getImageClassificationModelMetadata().getStopReason()));
Expand Down