Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

add input argument in warpctc layer #11167

Merged
merged 1 commit into from
Jun 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions plugin/warpctc/warpctc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ Operator *WarpCTCProp::CreateOperator(Context ctx) const {
DMLC_REGISTER_PARAMETER(WarpCTCParam);

MXNET_REGISTER_OP_PROPERTY(WarpCTC, WarpCTCProp)
.add_argument("data", "NDArray-or-Symbol", "Input data.")
.add_argument("label", "NDArray-or-Symbol", "Input label.")
.describe("warp ctc.")
.add_arguments(WarpCTCParam::__FIELDS__());

Expand Down