diff --git a/.github/workflows/build_packages.yaml b/.github/workflows/build_packages.yaml index 05376f03ed..1ffad7e0dc 100644 --- a/.github/workflows/build_packages.yaml +++ b/.github/workflows/build_packages.yaml @@ -206,6 +206,7 @@ jobs: - functions/geohash - functions/labelImage - functions/tfLite + - functions/onnx arch: ${{fromJson(needs.prepare.outputs.arch)}} os: - [ debian, "slim" ] @@ -218,6 +219,8 @@ jobs: plugin: functions/labelImage - os: [ alpine,"alpine" ] plugin: functions/tfLite + - os: [ alpine,"alpine" ] + plugin: functions/onnx steps: - uses: actions/checkout@v4 diff --git a/Makefile b/Makefile index 114731ca54..cf9b5f8de3 100644 --- a/Makefile +++ b/Makefile @@ -176,7 +176,8 @@ PLUGINS := sinks/influx \ functions/geohash \ functions/echo \ functions/labelImage \ - functions/tfLite + functions/tfLite \ + functions/onnx .PHONY: plugins $(PLUGINS) plugins: $(PLUGINS) diff --git a/docs/en_US/resources/mqttx_mnist.png b/docs/en_US/resources/mqttx_mnist.png new file mode 100644 index 0000000000..86dc675e73 Binary files /dev/null and b/docs/en_US/resources/mqttx_mnist.png differ diff --git a/docs/en_US/resources/mqttx_sum_and_difference.png b/docs/en_US/resources/mqttx_sum_and_difference.png new file mode 100644 index 0000000000..542a0092c8 Binary files /dev/null and b/docs/en_US/resources/mqttx_sum_and_difference.png differ