Skip to content
Snippets Groups Projects
Commit e93f01ed authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Fix typo in attribute name for GridSample.

parent 02c274f3
No related branches found
No related tags found
3 merge requests!279v0.4.0,!253v0.4.0,!235Add support for GridSample + Minor changes
......@@ -55,7 +55,7 @@ void declare_GridSampleOp(py::module &m) {
return new GridSample_Op(stringToInterpolationMode(mode), stringToPaddingMode(padding_mode), align_corners);
}), py::arg("mode") = "linear",
py::arg("padding_mode") = "zeros",
py::arg("alogn_corners") = false)
py::arg("align_corners") = false)
.def_static("get_inputs_name", &GridSample_Op::getInputsName)
.def_static("get_outputs_name", &GridSample_Op::getOutputsName)
.def_readonly_static("Type", &GridSample_Op::Type)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment