Interface Model.ModelProto.Node.ParameterOrBuilder

All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
All Known Implementing Classes:
Model.ModelProto.Node.Parameter, Model.ModelProto.Node.Parameter.Builder
Enclosing class:
Model.ModelProto.Node

public static interface Model.ModelProto.Node.ParameterOrBuilder extends MessageOrBuilder
  • Method Details

    • getName

      String getName()
      Human-readable name of the parameter.
      
      string name = 1;
      Returns:
      The name.
    • getNameBytes

      ByteString getNameBytes()
      Human-readable name of the parameter.
      
      string name = 1;
      Returns:
      The bytes for name.
    • getValue

      double getValue()
      Identifies the model value of the parameter. This can be different from
      the actual value (e.g. during optimization search).
      
      double value = 2;
      Returns:
      The value.
    • getStateValue

      double getStateValue()
      The actual value of the parameter.
      
      double state_value = 3;
      Returns:
      The stateValue.
    • getMin

      double getMin()
      Minimum value of the parameter.
      
      double min = 4;
      Returns:
      The min.
    • getMax

      double getMax()
      Maximum value of the parameter.
      
      double max = 5;
      Returns:
      The max.
    • getTunable

      boolean getTunable()
      Identifies whether the parameter should participate in autotuning.
      
      bool tunable = 6;
      Returns:
      The tunable.