Update.
authorFrancois Fleuret <francois@fleuret.org>
Sat, 14 Jan 2017 08:40:31 +0000 (09:40 +0100)
committerFrancois Fleuret <francois@fleuret.org>
Sat, 14 Jan 2017 08:40:31 +0000 (09:40 +0100)
README.md

index 7d51566..f2fac30 100644 (file)
--- 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)