Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Features] Conv3dNet and PermuteTransform #1398

Merged
merged 15 commits into from
Sep 16, 2023
Prev Previous commit
Next Next commit
doc
Co-authored-by: Vincent Moens <vincentmoens@gmail.com>
  • Loading branch information
xmaples and vmoens authored Jul 20, 2023
commit 1d2723c7f362c72b4b1e1f4393a1fbcb5a00db03
2 changes: 1 addition & 1 deletion torchrl/modules/models/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ class Conv3dNet(nn.Sequential):
num_cells (int or Sequence[int], optional): number of cells of every layer in between the input and output. If
an integer is provided, every layer will have the same number of cells. If an iterable is provided,
the linear layers out_features will match the content of num_cells.
default: [32, 32, 32];
default: ``[32, 32, 32]`` or ``[32] * depth` is depth is not ``None``.
kernel_sizes (int, Sequence[Union[int, Sequence[int]]]): Kernel size(s) of the conv network. If iterable, the length must match the
depth, defined by the num_cells or depth arguments.
strides (int or Sequence[int]): Stride(s) of the conv network. If iterable, the length must match the
Expand Down