From 79f9b2fc425c35c82e07db9cb762c2b04a992bdb Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Sat, 14 Jan 2017 09:40:31 +0100 Subject: [PATCH] Update. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7d51566..f2fac30 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ # Introduction # -This package implements a new module nn.DAG which inherits from -nn.Container and allows to combine modules in an arbitrary graph -without cycle. +This package implements a new module nn.DAG for the torch framework, +which inherits from nn.Container and allows to combine modules in an +arbitrary graph without cycle. ## Example ## A typical use would be: -```Lua +```lua model = nn.DAG() a = nn.Linear(100, 10) -- 2.20.1