pytutorial/pytorch/networks
David Rotermund df8ffa0912
Create README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2023-12-28 18:37:23 +01:00
..
README.md Create README.md 2023-12-28 18:37:23 +01:00

Creating networks

{:.no_toc}

* TOC {:toc}

The goal

In these days, building networks is very important.

Questions to David Rotermund

A fast way to build a network with Sequential

CLASS torch.nn.Sequential(*args: Module)

A sequential container. Modules will be added to it in the order they are passed in the constructor.

Example: