From 7528b1e8f1a3addde157be346e5b2ba015eef59b Mon Sep 17 00:00:00 2001 From: xiaoting <31891223+tink2123@users.noreply.github.com> Date: Fri, 4 Jun 2021 11:09:26 +0800 Subject: [PATCH] add seq_conv pbtxt (#33283) * add seq_conv pbtxt * add seq_conv pbtxt --- paddle/fluid/operators/compat/seqconv.pbtxt | 34 +++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 paddle/fluid/operators/compat/seqconv.pbtxt diff --git a/paddle/fluid/operators/compat/seqconv.pbtxt b/paddle/fluid/operators/compat/seqconv.pbtxt new file mode 100644 index 0000000000..d05aabcc0a --- /dev/null +++ b/paddle/fluid/operators/compat/seqconv.pbtxt @@ -0,0 +1,34 @@ +type: "sequence_conv" +def { + inputs { + name: "X" + } + inputs { + name: "Filter" + } + inputs { + name: "PaddingData" + } + outputs { + name: "Out" + } +} +extra { + attrs { + name: "paddingTrainable" + type: BOOLEAN + } + attrs { + name: "contextLength" + type: INT + } + attrs { + name: "contextStart" + type: INT + } + attrs { + name: "contextStride" + type: INT + } + +} -- GitLab