1// Messages in this file are not part of the basic standard established by
2// generic_tree_model.proto (see the toplevel comment in that file).
3
4syntax = "proto3";
5
6package tensorflow.decision_trees;
7
8import "tensorflow/contrib/decision_trees/proto/generic_tree_model.proto";
9
10// Used in generic_tree_model.BinaryNode.left_child_test.
11// Tests whether the feature's value belongs to the specified list,
12// (or does not belong if inverse=True).
13message MatchingValuesTest {
14  // When the feature is missing, the test's outcome is undefined.
15  FeatureId feature_id = 1;
16  repeated Value value = 2;
17  bool inverse = 3;
18}
19