From 0207abfe37187f96b246f13e6112bc51479c2db3 Mon Sep 17 00:00:00 2001 From: "Eric D. Schabell" Date: Thu, 6 Nov 2025 12:57:47 -0500 Subject: [PATCH] Fixes to layout tensorflow filter plugin doc. Fixes #2140. Signed-off-by: Eric D. Schabell --- pipeline/filters/tensorflow.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pipeline/filters/tensorflow.md b/pipeline/filters/tensorflow.md index d0217257d..581105c70 100644 --- a/pipeline/filters/tensorflow.md +++ b/pipeline/filters/tensorflow.md @@ -13,12 +13,12 @@ The Tensorflow plugin for Fluent Bit has the following limitations: The plugin supports the following configuration parameters: -| Key | Description | Default | -| :--- | :--- | :--- | -| `input_field` | Specify the name of the field in the record to apply inference on. | _none_ | -| `model_file` | Path to the model file (`.tflite`) to be loaded by Tensorflow Lite. | _none_ | -| `include_input_fields` | Include all input filed in filter's output. | `True` | -| `normalization_value` | Divide input values to `normalization_value`. | _none_ | +| Key | Description | Default | +|:-----------------------|:--------------------------------------------------------------------|:--------| +| `include_input_fields` | Include all input filed in filter's output. | `True` | +| `input_field` | Specify the name of the field in the record to apply inference on. | _none_ | +| `model_file` | Path to the model file (`.tflite`) to be loaded by Tensorflow Lite. | _none_ | +| `normalization_value` | Divide input values to `normalization_value`. | _none_ | ## Creating a Tensorflow Lite shared library @@ -32,8 +32,8 @@ To create a Tensorflow Lite shared library: bazel build -c opt //tensorflow/lite/c:tensorflowlite_c # see https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite/c ``` - The script creates the shared library - `bazel-bin/tensorflow/lite/c/libtensorflowlite_c.so`. + The script creates the shared library `bazel-bin/tensorflow/lite/c/libtensorflowlite_c.so`. + 1. Copy the library to a location such as `/usr/lib` that can be used by Fluent Bit. ## Building Fluent Bit with Tensorflow filter plugin