提交 85dc9a34 authored 作者: Frederic's avatar Frederic

Add comment.

上级 2685608e
......@@ -164,6 +164,8 @@ def conv3d(signals, filters,
border_mode='valid'):
"""Convolve spatio-temporal filters with a movie.
It flip the filters.
:param signals: timeseries of images whose pixels have color channels.
shape: [Ns, Ts, C, Hs, Ws]
:param filters: spatio-temporal filters
......@@ -173,6 +175,9 @@ def conv3d(signals, filters,
:param border_mode: The only one tested is 'valid'.
:note: Work on the GPU.
Another way to define signals: (batch, time, in channel, row, column)
Another way to define filters: (out channel,time,in channel, row, column)
"""
if isinstance(border_mode, str):
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论