Packagecom.tuarua.firebase.ml.custom
Classpublic class ModelInputs
InheritanceModelInputs Inheritance Object

Input data for a Firebase custom model.



Public Properties
 PropertyDefined By
  input : ByteArray
[read-only]
ModelInputs
Public Methods
 MethodDefined By
  
ModelInputs
  
addInput(value:ByteArray):void
Appends an input at the next index.
ModelInputs
Property Detail
inputproperty
input:ByteArray  [read-only]


Implementation
    public function get input():ByteArray
Constructor Detail
ModelInputs()Constructor
public function ModelInputs()



Method Detail
addInput()method
public function addInput(value:ByteArray):void

Appends an input at the next index. The index starts from 0 and is incremented each time an input is added.

Parameters

value:ByteArray — Input data for the next index. Input can be ByteArray, or a one-dimensional or multi-dimensional array of Numbers (Number, int, string).