Usages
- Tensorflow Helper Plugin is used to add additional input and post-processing options to the Tensorflow plugin provided by Joget platform.
- Joget platform currently provided 2 Tensorflow plugin which is Simple TensorFlow AI Decision Tool & Simple TensorFlow AI Process Tool.
- After a Tensorflow Helper Plugin is installed in Joget platform, the additional input and post-processing options provided by this plugin will available in selection.
- A useable Tensorflow Helper Plugin must implement org.joget.ai.TensorFlowPlugin interface.
Interface Class
org.joget.ai.TensorFlowPlugin
- Under wflow-core module
- An interface class to develop a Tensorflow Helper Plugin.
Method Detail
Interface Methods
getInputClasses
public TensorFlowInput[] getInputClasses();
Return the additional input option.
getPostProcessingClasses
public TensorFlowPostProcessing[] getPostProcessingClasses();
Return the additional post-processing option.
org.joget.ai.TensorFlowElement
- Under wflow-core module
- A base interface class to develop an input/post-processing option for the tensorflow plugin
org.joget.ai.TensorFlowInput
- Under wflow-core module
- An interface class to develop an input option for the tensorflow plugin
- Extended org.joget.ai.TensorFlowElement.
org.joget.ai.TensorFlowPostProcessing
- Under wflow-core module
- An interface class to develop a post-processing option for the tensorflow plugin
- Extended org.joget.ai.TensorFlowElement.