outputScoreTensorName property

String outputScoreTensorName

Implementation

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

Set the name of the output score tensor, if the model has multiple outputs. Dafualt to "OUTPUT_SCORE".

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

Implementation

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