提交 1c8357ce authored 作者: Frederic's avatar Frederic

reformat conv3d2d() docstring to display correctly.

上级 3ccbe615
...@@ -109,13 +109,17 @@ def conv3d(signals, filters, ...@@ -109,13 +109,17 @@ def conv3d(signals, filters,
""" """
Convolve spatio-temporal filters with a movie. Convolve spatio-temporal filters with a movie.
signals - timeseries of images whose pixels have color channels. :param signals: timeseries of images whose pixels have color channels.
shape: [Ns, Ts, C, Hs, Ws] shape: [Ns, Ts, C, Hs, Ws]
filters - spatio-temporal filters :param filters: spatio-temporal filters
shape: [Nf, Tf, C, Hf, Wf] shape: [Nf, Tf, C, Hf, Wf]
:param signals_shape: None or a tuple/list with the shape of signals
:param filters_shape: None or a tuple/list with the shape of filters
:param border_mode: tuple of 3 string mode names (or just a mode name,
which means a homogenous tuple). A mode name can be one of
'full', 'valid', and 'same'.
border_mode - tuple of string mode names (or just a mode name, which means a :note: the border_mode 'same' is not implemented.
homogenous tuple). A mode name can be one of 'full', 'valid', and 'same'.
""" """
if isinstance(border_mode, str): if isinstance(border_mode, str):
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论