@@ -93,7 +93,7 @@ table OperatorCode {
9393### How to Read ` builtin_code `
9494
9595The builtin operator code value will co-exist in the two fields. Some old schema
96- version three models will have the default value in the new field. Always the
96+ version 3 models will have the default value in the new field. Always the
9797maximum value of the two fields always will be the correct value.
9898
9999```
@@ -111,13 +111,13 @@ maximum value of the two fields always will be the correct value.
111111
112112The details will be described in the following sections.
113113
114- ##### Supporting schema version three models
114+ ##### Supporting schema version 3 models
115115
116116The TensorFlow Lite library built after the proposal will read the existing
117117` deprecated_builtin_code ` field from old model files.
118118
119- The new ` builtin_code ` field is not available in the v3 models. Flatbuffer
120- library will feed zero value, which is the default value in the v3a schema. The
119+ The new ` builtin_code ` field is not available in the version 3 models. Flatbuffer
120+ library will feed zero value, which is the default value in the version 3a schema. The
121121actual builtin operatore code value will exist in the deprecated, renamed
122122` deprecated_builtin_code ` field. At the same time, it implies that
123123` deprecated_builtin_code ` >= ` builtin_code ` and the maximum value of the two
@@ -156,9 +156,9 @@ BuiltinOperator GetBuiltinCode(const OperatorCodeT *op_code);
156156The above library also provides the following ` OperatorCode ` table object
157157creation methods for backward compatibility.
158158
159- These are manually copied from the flatbuffer generated code from schema v3 .
160- They serve as overloads for the v3a 's CreateOperatorCode functions in
161- schema_generated.h and enable code that still assumes flatbuffer schema v3 to be
159+ These are manually copied from the flatbuffer generated code from schema version 3 .
160+ They serve as overloads for the version 3a 's CreateOperatorCode functions in
161+ schema_generated.h and enable code that still assumes flatbuffer schema version 3 to be
162162unchanged with the inclusion of the schema_utils header.
163163
164164```
0 commit comments