/
githubmirror
/
models
Обзор
Документация
Войти
/
githubmirror
/
models
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
research/object_detection/protos/keypoint_box_coder.proto
19 строк
575 B
Vivek Rathod
update protos.
27 окт 2017, 23:58
27 окт 2017, 23:58
9adf024
Код
Авторство
О чём код?
syntax = "proto2"; package object_detection.protos; // Configuration proto for KeypointBoxCoder. See // box_coders/keypoint_box_coder.py for details. message KeypointBoxCoder { optional int32 num_keypoints = 1; // Scale factor for anchor encoded box center and keypoints. optional float y_scale = 2 [default = 10.0]; optional float x_scale = 3 [default = 10.0]; // Scale factor for anchor encoded box height. optional float height_scale = 4 [default = 5.0]; // Scale factor for anchor encoded box width. optional float width_scale = 5 [default = 5.0]; }