Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit ebdff99

Browse files
committed
Use version specification consistenly
Builtin code extension RFC document will use version specification consistenly.
1 parent 8bbf8be commit ebdff99

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

rfcs/20200901-tflite-builtin-code-extension.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ table OperatorCode {
9393
### How to Read `builtin_code`
9494

9595
The 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
9797
maximum 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

112112
The details will be described in the following sections.
113113

114-
##### Supporting schema version three models
114+
##### Supporting schema version 3 models
115115

116116
The 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
121121
actual 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);
156156
The above library also provides the following `OperatorCode` table object
157157
creation 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
162162
unchanged with the inclusion of the schema_utils header.
163163

164164
```

0 commit comments

Comments
 (0)