Skip to content

Commit 4b7c716

Browse files
authored
Fixes to layout tensorflow filter plugin doc. Fixes #2140. (#2148)
Signed-off-by: Eric D. Schabell <eric@schabell.org>
1 parent 03bed56 commit 4b7c716

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pipeline/filters/tensorflow.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ The Tensorflow plugin for Fluent Bit has the following limitations:
1313

1414
The plugin supports the following configuration parameters:
1515

16-
| Key | Description | Default |
17-
| :--- | :--- | :--- |
18-
| `input_field` | Specify the name of the field in the record to apply inference on. | _none_ |
19-
| `model_file` | Path to the model file (`.tflite`) to be loaded by Tensorflow Lite. | _none_ |
20-
| `include_input_fields` | Include all input filed in filter's output. | `True` |
21-
| `normalization_value` | Divide input values to `normalization_value`. | _none_ |
16+
| Key | Description | Default |
17+
|:-----------------------|:--------------------------------------------------------------------|:--------|
18+
| `include_input_fields` | Include all input filed in filter's output. | `True` |
19+
| `input_field` | Specify the name of the field in the record to apply inference on. | _none_ |
20+
| `model_file` | Path to the model file (`.tflite`) to be loaded by Tensorflow Lite. | _none_ |
21+
| `normalization_value` | Divide input values to `normalization_value`. | _none_ |
2222

2323
## Creating a Tensorflow Lite shared library
2424

@@ -32,8 +32,8 @@ To create a Tensorflow Lite shared library:
3232
bazel build -c opt //tensorflow/lite/c:tensorflowlite_c # see https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite/c
3333
```
3434

35-
The script creates the shared library
36-
`bazel-bin/tensorflow/lite/c/libtensorflowlite_c.so`.
35+
The script creates the shared library `bazel-bin/tensorflow/lite/c/libtensorflowlite_c.so`.
36+
3737
1. Copy the library to a location such as `/usr/lib` that can be used by Fluent Bit.
3838

3939
## Building Fluent Bit with Tensorflow filter plugin

0 commit comments

Comments
 (0)