inputTensorName property

String inputTensorName

Implementation

String get inputTensorName => base.ref.inputTensorName.toDartString();
void inputTensorName=(String value)

Set the name of the input text tensor, if the model has multiple inputs. Only the input tensor specified will be used for inference; other input tensors will be ignored. Dafualt to "INPUT".

See the section, Configure the input/output tensors for NLClassifier, for more details.

Implementation

set inputTensorName(String value) {
  base.ref.inputTensorName = value.toNativeUtf8();
}