Siddhi Execution TensorFlow Extension Parent

WSO2 is an open source application development software company focused on providing service-oriented architecture solutions for professional developers.

Лицензия

Лицензия

Категории

Категории

TensorFlow Прикладные библиотеки Machine Learning Siddhi
Группа

Группа

io.siddhi.extension.execution.tensorflow
Идентификатор

Идентификатор

siddhi-execution-tensorflow-parent
Последняя версия

Последняя версия

2.0.1
Дата

Дата

Тип

Тип

zip
Описание

Описание

Siddhi Execution TensorFlow Extension Parent
WSO2 is an open source application development software company focused on providing service-oriented architecture solutions for professional developers.
Ссылка на сайт

Ссылка на сайт

http://wso2.org
Организация-разработчик

Организация-разработчик

WSO2
Система контроля версий

Система контроля версий

https://github.com/siddhi-io/siddhi-execution-tensorflow.git

Скачать siddhi-execution-tensorflow-parent

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Siddhi Execution TensorFlow

Jenkins Build Status GitHub Release GitHub Release Date GitHub Open Issues GitHub Last Commit License

The siddhi-execution-tensorflow extension is a Siddhi extension that provides support for running pre-built TensorFlow models.

For information on Siddhi and it's features refer Siddhi Documentation.

Download

  • Versions 2.x and above with group id io.siddhi.extension.* from here.
  • Versions 1.x and lower with group id org.wso2.extension.siddhi.* from here.

Latest API Docs

Latest API Docs is 2.0.2.

Features

  • predict (Stream Processor)

    Performs inferences (prediction) from an already built TensorFlow machine learning model. The types of models are unlimited (including image classifiers, deep learning models) as long as they satisfy the following conditions.
    1. They are saved with the tag 'serve' in SavedModel format for more info see here.
    2. Model is initially trained and ready for inferences
    3. Inference logic is written and saved in the model
    4. signature_def is properly included in the metaGraphDef (a protocol buffer file which has information about the graph) and the key for prediction signature def is 'serving-default'

    Also the prerequisites for inference are as follows.
    1. User knows the names of the input and output nodes
    2. Has a preprocessed data set of Java primitive types or their multidimensional arrays

    Since each input is directly used to create a Tensor they should be of compatible shape and data type with the model.
    The information related to input and output nodes can be retrieved from saved model signature def.signature_def can be read by using the saved_model_cli commands found at https://www.tensorflow.org/programmers_guide/saved_model.
    signature_def can be read in Python as follows

    with tf.Session() as sess:
    md = tf.saved_model.loader.load(sess, ['serve'], export_dir)
    sig = md.signature_def[tf.saved_model.signature_constants.DEFAULT_SERVING_SIGNATURE_DEF_KEY]
    print(sig)
    


    Or you can read signature def from Java as follows,

    final String DEFAULT_SERVING_SIGNATURE_DEF_KEY = "serving_default";
    final SignatureDef sig =
    MetaGraphDef.parseFrom(model.metaGraphDef())
    .getSignatureDefOrThrow(DEFAULT_SERVING_SIGNATURE_DEF_KEY);
    


    You will have to import the following in Java.
    import org.tensorflow.framework.MetaGraphDef;
    import org.tensorflow.framework.SignatureDef;

Dependencies

There are no other dependencies needed for this extension.

Installation

For installing this extension on various siddhi execution environments refer Siddhi documentation section on adding extensions.

Support and Contribution

  • We encourage users to ask questions and get support via StackOverflow, make sure to add the siddhi tag to the issue for better response.

  • If you find any issues related to the extension please report them on the issue tracker.

  • For production support and other contribution related information refer Siddhi Community documentation.

io.siddhi.extension.execution.tensorflow

Siddhi - Cloud Native Stream Processor

Siddhi is an open source, lightweight, stream processing and complex event processing engine.

Версии библиотеки

Версия
2.0.1