Create README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-28 18:37:23 +01:00 committed by GitHub
parent 7356b133ed
commit df8ffa0912
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,30 @@
# Creating networks
{:.no_toc}
<nav markdown="1" class="toc-class">
* TOC
{:toc}
</nav>
## The goal
In these days, building networks is very important.
Questions to [David Rotermund](mailto:davrot@uni-bremen.de)
## A fast way to build a network with [Sequential](https://pytorch.org/docs/stable/generated/torch.nn.Sequential.html#torch.nn.Sequential)
```python
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:
```python
```