Packages

final class Path extends GeneratedMessageV3 with PathOrBuilder

A path is a more general substitute for the name of a field or feature that
can be used for flat examples as well as structured data. For example, if
we had data in a protocol buffer:
message Person {
  int age = 1;
  optional string gender = 2;
  repeated Person parent = 3;
}
Thus, here the path {step:["parent", "age"]} in statistics would refer to the
age of a parent, and {step:["parent", "parent", "age"]} would refer to the
age of a grandparent. This allows us to distinguish between the statistics
of parents' ages and grandparents' ages. In general, repeated messages are
to be preferred to linked lists of arbitrary length.
For SequenceExample, if we have a feature list "foo", this is represented
by {step:["##SEQUENCE##", "foo"]}.

Protobuf type tensorflow.metadata.v0.Path

Source
Path.java
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Path
  2. PathOrBuilder
  3. GeneratedMessageV3
  4. Serializable
  5. AbstractMessage
  6. Message
  7. MessageOrBuilder
  8. AbstractMessageLite
  9. MessageLite
  10. MessageLiteOrBuilder
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def equals(obj: AnyRef): Boolean
    Definition Classes
    Path → AbstractMessage → Message → AnyRef → Any
    Annotations
    @Override()
  2. def findInitializationErrors(): List[String]
    Definition Classes
    AbstractMessage → MessageOrBuilder
  3. def getAllFields(): Map[FieldDescriptor, AnyRef]
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  4. def getDefaultInstanceForType(): Path
    Definition Classes
    Path → MessageOrBuilder → MessageLiteOrBuilder
    Annotations
    @Override()
  5. def getDescriptorForType(): Descriptor
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  6. def getField(field: FieldDescriptor): AnyRef
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  7. def getInitializationErrorString(): String
    Definition Classes
    AbstractMessage → MessageOrBuilder
  8. def getOneofFieldDescriptor(oneof: OneofDescriptor): FieldDescriptor
    Definition Classes
    GeneratedMessageV3 → AbstractMessage → MessageOrBuilder
  9. def getParserForType(): Parser[Path]
    Definition Classes
    Path → GeneratedMessageV3 → Message → MessageLite
    Annotations
    @Override()
  10. def getRepeatedField(field: FieldDescriptor, index: Int): AnyRef
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  11. def getRepeatedFieldCount(field: FieldDescriptor): Int
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  12. def getSerializedSize(): Int
    Definition Classes
    Path → GeneratedMessageV3 → AbstractMessage → MessageLite
    Annotations
    @Override()
  13. def getStep(index: Int): String

    Any string is a valid step.
    However, whenever possible have a step be [A-Za-z0-9_]+.
    

    Any string is a valid step.
    However, whenever possible have a step be [A-Za-z0-9_]+.
    

    repeated string step = 1;

    index

    The index of the element to return.

    returns

    The step at the given index.

    Definition Classes
    PathPathOrBuilder
  14. def getStepBytes(index: Int): ByteString

    Any string is a valid step.
    However, whenever possible have a step be [A-Za-z0-9_]+.
    

    Any string is a valid step.
    However, whenever possible have a step be [A-Za-z0-9_]+.
    

    repeated string step = 1;

    index

    The index of the value to return.

    returns

    The bytes of the step at the given index.

    Definition Classes
    PathPathOrBuilder
  15. def getStepCount(): Int

    Any string is a valid step.
    However, whenever possible have a step be [A-Za-z0-9_]+.
    

    Any string is a valid step.
    However, whenever possible have a step be [A-Za-z0-9_]+.
    

    repeated string step = 1;

    returns

    The count of step.

    Definition Classes
    PathPathOrBuilder
  16. def getStepList(): ProtocolStringList

    Any string is a valid step.
    However, whenever possible have a step be [A-Za-z0-9_]+.
    

    Any string is a valid step.
    However, whenever possible have a step be [A-Za-z0-9_]+.
    

    repeated string step = 1;

    returns

    A list containing the step.

    Definition Classes
    PathPathOrBuilder
  17. def getUnknownFields(): UnknownFieldSet
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  18. def hasField(field: FieldDescriptor): Boolean
    Definition Classes
    GeneratedMessageV3 → MessageOrBuilder
  19. def hasOneof(oneof: OneofDescriptor): Boolean
    Definition Classes
    GeneratedMessageV3 → AbstractMessage → MessageOrBuilder
  20. def hashCode(): Int
    Definition Classes
    Path → AbstractMessage → Message → AnyRef → Any
    Annotations
    @Override()
  21. final def isInitialized(): Boolean
    Definition Classes
    Path → GeneratedMessageV3 → AbstractMessage → MessageLiteOrBuilder
    Annotations
    @Override()
  22. def newBuilderForType(): Builder
    Definition Classes
    Path → Message → MessageLite
    Annotations
    @Override()
  23. def toBuilder(): Builder
    Definition Classes
    Path → Message → MessageLite
    Annotations
    @Override()
  24. def toByteArray(): Array[Byte]
    Definition Classes
    AbstractMessageLite → MessageLite
  25. def toByteString(): ByteString
    Definition Classes
    AbstractMessageLite → MessageLite
  26. final def toString(): String
    Definition Classes
    AbstractMessage → Message → AnyRef → Any
  27. def writeDelimitedTo(output: OutputStream): Unit
    Definition Classes
    AbstractMessageLite → MessageLite
    Annotations
    @throws(classOf[java.io.IOException])
  28. def writeTo(output: CodedOutputStream): Unit
    Definition Classes
    Path → GeneratedMessageV3 → AbstractMessage → MessageLite
    Annotations
    @Override()
  29. def writeTo(output: OutputStream): Unit
    Definition Classes
    AbstractMessageLite → MessageLite
    Annotations
    @throws(classOf[java.io.IOException])