Interface StudySpec.TransferLearningConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StudySpec.TransferLearningConfig
,StudySpec.TransferLearningConfig.Builder
- Enclosing class:
- StudySpec
public static interface StudySpec.TransferLearningConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getDisableTransferLearning()
Flag to to manually prevent vizier from using transfer learning on a new study.String
getPriorStudyNames(int index)
Output only.com.google.protobuf.ByteString
getPriorStudyNamesBytes(int index)
Output only.int
getPriorStudyNamesCount()
Output only.List<String>
getPriorStudyNamesList()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDisableTransferLearning
boolean getDisableTransferLearning()
Flag to to manually prevent vizier from using transfer learning on a new study. Otherwise, vizier will automatically determine whether or not to use transfer learning.
bool disable_transfer_learning = 1;
- Returns:
- The disableTransferLearning.
-
getPriorStudyNamesList
List<String> getPriorStudyNamesList()
Output only. Names of previously completed studies
repeated string prior_study_names = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- A list containing the priorStudyNames.
-
getPriorStudyNamesCount
int getPriorStudyNamesCount()
Output only. Names of previously completed studies
repeated string prior_study_names = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The count of priorStudyNames.
-
getPriorStudyNames
String getPriorStudyNames(int index)
Output only. Names of previously completed studies
repeated string prior_study_names = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the element to return.- Returns:
- The priorStudyNames at the given index.
-
getPriorStudyNamesBytes
com.google.protobuf.ByteString getPriorStudyNamesBytes(int index)
Output only. Names of previously completed studies
repeated string prior_study_names = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the priorStudyNames at the given index.
-
-