TensorFlow Processor
2 min
the tensorflow processor feeds time series data to a tensorflow model you've already created and trained why use the tensorflow processor use this processor when your analytics flow needs to pass time series values, rather than image data, into a tensorflow model, for example, running an existing predictive maintenance model against a stream of sensor readings how it works point model path at your trained tensorflow model tags , input operation , and output operation must match the names used when the model was created tags identifies which model to load if there's more than one, and input operation and output operation identify the tensors the model expects as input and returns as output number of inputs sets how many inputs are passed to the model window size sets the size of the values array to process time shift ms shifts the output's timestamp by the specified number of milliseconds parameters parameter details model path the file path of the pre trained tensorflow model number of inputs the number of inputs given to the tensorflow model tags tags for loading the model separate multiple tags with commas input operation the input tensor used when the model was created, usually the dictionary of values fed to the model output operation the output tensor used when the model was created, usually the model's output window size the size of the values array to process time shift ms how many milliseconds to shift the current timestamp by pass through value determines whether the processor's output is the model's result or the original unchanged input value