diff --git a/pytorch/networks/README.md b/pytorch/networks/README.md new file mode 100644 index 0000000..a1c81db --- /dev/null +++ b/pytorch/networks/README.md @@ -0,0 +1,30 @@ +# Creating networks +{:.no_toc} + + + +## 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 + +``` +