From df8ffa091247fc4797fb159e65c55ec42d663c76 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Thu, 28 Dec 2023 18:37:23 +0100 Subject: [PATCH] Create README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- pytorch/networks/README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pytorch/networks/README.md 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 + +``` +