NCTC / models /research /lstm_object_detection /protos /input_reader_google.proto
NCTCMumbai's picture
Upload 2571 files
0b8359d
raw
history blame contribute delete
782 Bytes
syntax = "proto2";
package lstm_object_detection.protos;
import "object_detection/protos/input_reader.proto";
message GoogleInputReader {
extend object_detection.protos.ExternalInputReader {
optional GoogleInputReader google_input_reader = 444;
}
oneof input_reader {
TFRecordVideoInputReader tf_record_video_input_reader = 1;
}
}
message TFRecordVideoInputReader {
// Path(s) to tfrecords of input data.
repeated string input_path = 1;
enum DataType {
UNSPECIFIED = 0;
TF_EXAMPLE = 1;
TF_SEQUENCE_EXAMPLE = 2;
}
optional DataType data_type = 2 [default=TF_SEQUENCE_EXAMPLE];
// Length of the video sequence. All the input video sequence should have the
// same length in frames, e.g. 5 frames.
optional int32 video_length = 3;
}