Skip to content
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

Fix typo #18416

Merged
merged 14 commits into from
Apr 16, 2018
6 changes: 3 additions & 3 deletions tensorflow/contrib/lite/toco/model.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ enum class AxesOrder {
};

// The type of the scalars in an array.
// Note that that does not by itself tell whether the values in the array are
// real (are literally interpreted as real numbers) or quantized (only acquire
// a meaning as real numbers in conjunction with QuantizationParams).
// Note that the type does not by itself tell whether the values in the array
// are real (are literally interpreted as real numbers) or quantized (only
// acquire a meaning as real numbers in conjunction with QuantizationParams).
//
// In practice though:
// float values are always real
Expand Down
2 changes: 1 addition & 1 deletion tensorflow/core/framework/collective.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class StepSequenceInterface {
virtual void RefreshStepIdSequenceAsync(int64 graph_key,
const StatusCallback& done) = 0;

// Returns the the step_id that should be used for initiating a new execution
// Returns the step_id that should be used for initiating a new execution
// on the specified graph. May return the same step_id multiple times if
// RetireStepId or RefreshStepIdReservation is not called.
virtual int64 NextStepId(int64 graph_key) = 0;
Expand Down