pytutorial/pytorch/networks
David Rotermund 09c2aa2d8f
Add files via upload
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2023-12-28 18:38:14 +01:00
..
network_0.png Add files via upload 2023-12-28 18:38:14 +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: