/
githubmirror
/
models
Обзор
Документация
Войти
/
githubmirror
/
models
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
research/lstm_object_detection/protos/input_reader_google.proto
31 строка
782 B
Menglong Zhu
Merged commit includes the following changes: (#6726)
08 май 2019, 03:48
Не верифицирован
08 май 2019, 03:48
58856e2
Код
Авторство
О чём код?
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; }