forked from SciSharp/SciSharp-Stack-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DigitRecognitionLSTM.cs
174 lines (139 loc) · 6.52 KB
/
DigitRecognitionLSTM.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*****************************************************************************
Copyright 2018 The TensorFlow.NET Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
******************************************************************************/
using System.Diagnostics;
using System.Linq;
using Tensorflow;
using Tensorflow.Operations;
using static Tensorflow.Binding;
namespace TensorFlowNET.Examples
{
/// <summary>
/// Bi-directional Recurrent Neural Network.
///
/// To classify images using a bidirectional recurrent neural network, we consider
/// every image row as a sequence of pixels.Because MNIST image shape is 28*28px,
/// we will then handle 28 sequences of 28 steps for every sample.
///
/// https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/3_NeuralNetworks/bidirectional_rnn.py
/// </summary>
public class DigitRecognitionLSTM : SciSharpExample, IExample
{
// Training Parameters
float learning_rate = 0.001f;
int training_steps = 1000;
int batch_size = 128;
int display_step = 100;
// Network Parameters
int num_input = 28;
int timesteps = 28;
int num_hidden = 128; // hidden layer num of features
int num_classes = 10; // MNIST total classes (0-9 digits)
Datasets<MnistDataSet> mnist;
Tensor X, Y;
Tensor loss_op, accuracy, prediction;
Operation train_op;
float accuracy_test = 0f;
Session sess;
public ExampleConfig InitConfig()
=> Config = new ExampleConfig
{
Name = "MNIST LSTM (Graph)",
Enabled = false,
IsImportingGraph = false
};
public bool Run()
{
tf.compat.v1.disable_eager_execution();
PrepareData();
BuildGraph();
sess = tf.Session();
Train();
Test();
return accuracy_test > 0.40;
}
public override Graph BuildGraph()
{
var graph = new Graph().as_default();
X = tf.placeholder(tf.float32, (-1, timesteps, num_input));
Y = tf.placeholder(tf.float32, (-1, num_classes));
// Hidden layer weights => 2*n_hidden because of forward + backward cells
var weights = tf.Variable(tf.random.normal((2 * num_hidden, num_classes)));
var biases = tf.Variable(tf.random.normal(num_classes));
// Unstack to get a list of 'timesteps' tensors of shape (batch_size, num_input)
var x = tf.unstack(X, timesteps, 1);
// Define lstm cells with tensorflow
// Forward direction cell
var lstm_fw_cell = new BasicLstmCell(num_hidden, forget_bias: 1.0f);
// Backward direction cell
var lstm_bw_cell = new BasicLstmCell(num_hidden, forget_bias: 1.0f);
// Get lstm cell output
var (outputs, _, _) = rnn.static_bidirectional_rnn(lstm_fw_cell, lstm_bw_cell, x, dtype: tf.float32);
// Linear activation, using rnn inner loop last output
var logits = tf.matmul(outputs.Last(), weights) + biases;
prediction = tf.nn.softmax(logits);
// Define loss and optimizer
loss_op = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(
logits: logits, labels: Y));
var optimizer = tf.train.GradientDescentOptimizer(learning_rate: learning_rate);
train_op = optimizer.minimize(loss_op);
// Evaluate model (with test logits, for dropout to be disabled)
var correct_pred = tf.equal(tf.math.argmax(prediction, 1), tf.math.argmax(Y, 1));
accuracy = tf.reduce_mean(tf.cast(correct_pred, tf.float32));
return graph;
}
public override void Train()
{
float loss_val = 100.0f;
float accuracy_val = 0f;
var init = tf.global_variables_initializer();
sess.run(init);
var sw = new Stopwatch();
sw.Start();
foreach (var step in range(1, training_steps + 1))
{
var (batch_x, batch_y) = mnist.Train.GetNextBatch(batch_size);
// Reshape data to get 28 seq of 28 elements
batch_x = batch_x.reshape((batch_size, timesteps, num_input));
// Run optimization op (backprop)
sess.run(train_op, (X, batch_x), (Y, batch_y));
if (step % display_step == 0 || step == 1)
{
// Calculate batch loss and accuracy
(loss_val, accuracy_val) = sess.run((loss_op, accuracy), (X, batch_x), (Y, batch_y));
print($"Step {step}: Minibatch Loss={loss_val.ToString("0.0000")}, Training Accuracy={accuracy_val.ToString("0.000")} {sw.ElapsedMilliseconds}ms");
sw.Restart();
}
}
print("Optimization Finished!");
}
public override void Test()
{
// Calculate accuracy for 128 mnist test images
var (x_test, y_test) = (mnist.Test.Data[":128"], mnist.Test.Labels[":128"]);
x_test = x_test.reshape((-1, timesteps, num_input));
accuracy_test = sess.run(accuracy, new FeedItem(X, x_test), new FeedItem(Y, y_test));
print("---------------------------------------------------------");
print($"Testing Accuracy: {accuracy_test.ToString("P")}");
print("---------------------------------------------------------");
}
public override void PrepareData()
{
var loader = new MnistModelLoader();
mnist = loader.LoadAsync(".resources/mnist", oneHot: true, showProgressInConsole: true).Result;
print("Size of:");
print($"- Training-set:\t\t{len(mnist.Train.Data)}");
print($"- Validation-set:\t{len(mnist.Validation.Data)}");
print($"- Test-set:\t\t{len(mnist.Test.Data)}");
}
}
}