From 1c385e26f9e6727c66f971a33f930c59f75a6639 Mon Sep 17 00:00:00 2001 From: wangguanzhong Date: Thu, 29 Oct 2020 15:05:51 +0800 Subject: [PATCH] add op_function_generator for box_coder (#28303) * add op_function_generator for box_coder * fix format --- paddle/fluid/pybind/op_function_generator.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/paddle/fluid/pybind/op_function_generator.cc b/paddle/fluid/pybind/op_function_generator.cc index cac44173c1..92006bff2c 100644 --- a/paddle/fluid/pybind/op_function_generator.cc +++ b/paddle/fluid/pybind/op_function_generator.cc @@ -53,6 +53,7 @@ std::map> op_ins_map = { {"X", "W", "Label", "PathTable", "PathCode", "Bias"}}, {"moving_average_abs_max_scale", {"X", "InAccum", "InState"}}, {"multiclass_nms3", {"BBoxes", "Scores", "RoisNum"}}, + {"box_coder", {"PriorBox", "PriorBoxVar", "TargetBox"}}, }; // NOTE(zhiqiu): Like op_ins_map. -- GitLab