changeset 37:59044f78d587

documentation
author Jeff Hammel <k0scist@gmail.com>
date Mon, 04 Sep 2017 14:05:24 -0700
parents 433c475f42db
children a69d1e6ff46d
files README.txt docs/matrix.txt
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/README.txt	Mon Sep 04 14:02:24 2017 -0700
+++ b/README.txt	Mon Sep 04 14:05:24 2017 -0700
@@ -22,6 +22,10 @@
 
 - mxnet : http://gluon.mxnet.io/P01-C01-introduction.html
 
+- NakedTensor: https://github.com/jostmey/NakedTensor;
+  Bare bone examples of machine learning in TensorFlow
+
+
 ----
 
 Jeff Hammel
--- a/docs/matrix.txt	Mon Sep 04 14:02:24 2017 -0700
+++ b/docs/matrix.txt	Mon Sep 04 14:05:24 2017 -0700
@@ -1,11 +1,13 @@
     [|  |     | ]
-X = [x1 x2 ...xm]
+X = [x1 x2 ...xm] = A0
     [|  |     | ]
 
 Z1 = w'X + b1
 
 A1 = sigmoid(Z1)
 
+Z2 = W2 A1 + b2
+
      [---]
 W1 = [---]
      [---]