-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrain_value.py
More file actions
158 lines (131 loc) · 5.75 KB
/
train_value.py
File metadata and controls
158 lines (131 loc) · 5.75 KB
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
# train_value.py
# Trains the neural net to output sorted array directly
# Version 1.0
# Does not output exact values, loss needs to be reduced
import generate_data as gd
import tensorflow as tf
import sortedness as st
import time
def train(array_start, array_end, num_input, num_array, num_test):
# Parameters
learning_rate = 0.1
num_steps = 6000
batch_size = 200
display_step = 1000
# Network Parameters
n_hidden_1 = 40 # 1st layer number of neurons
n_hidden_2 = 40 # 2nd layer number of neurons
#num_input = 5 # MNIST data input (img shape: 28*28)
num_classes = num_input # MNIST total classes (0-9 digits)
#array_start = 0
#array_end = 10
#num_array = 2000
# tf Graph input
X = tf.placeholder("float32", [None, num_input])
Y = tf.placeholder("float32", [None, num_classes])
# Store layers weight & bias
weights = {
'h1': tf.Variable(tf.random_normal(shape=[num_input, n_hidden_1], stddev=0.1)),
'h2': tf.Variable(tf.random_normal(shape=[n_hidden_1, n_hidden_2],stddev=0.1)),
'out': tf.Variable(tf.random_normal(shape=[n_hidden_2, num_classes], stddev=0.1))
}
biases = {
'b1': tf.Variable(tf.constant(0.1, shape=[n_hidden_1])),
'b2': tf.Variable(tf.constant(0.1, shape=[n_hidden_2])),
'out': tf.Variable(tf.constant(0.1, shape=[num_classes]))
}
# Create model
def neural_net(x):
# Hidden fully connected layer with 256 neurons
layer_1 = (tf.matmul(x, weights['h1']) + biases['b1'])
# Hidden fully connected layer with 256 neurons
layer_2 = (tf.matmul(layer_1, weights['h2']) + biases['b2'])
# Output fully connected layer with a neuron for each class
out_layer = tf.matmul(layer_2, weights['out']) + biases['out']
return out_layer
# Construct model
logits = neural_net(X)
prediction = (logits)
# Define loss and optimizer
#loss_op = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits_v2(
# logits=logits, labels=Y))
loss_op = tf.reduce_mean(tf.losses.mean_squared_error(
labels=Y, predictions=prediction))
optimizer = tf.train.AdamOptimizer(learning_rate=learning_rate)
train_op = optimizer.minimize(loss_op)
# Evaluate model
correct_pred = tf.equal(tf.contrib.framework.argsort(prediction), tf.contrib.framework.argsort(Y))
#correct_pred = tf.equal(tf.convert_to_tensor(prediction), tf.convert_to_tensor(Y))
accuracy = tf.reduce_mean(tf.cast(correct_pred, tf.float32))
# Initialize the variables (i.e. assign their default value)
init = tf.global_variables_initializer()
#generate data and get labels
array = gd.gen_array(num_input, array_start, array_end, num_array)
normalized_array = gd.normalize(array_start, array_end, array)
labels = gd.sorted_array(normalized_array)
arg_labels = gd.argsort_list(array)
test_x = gd.gen_array(num_input, array_start, array_end, num_test)
norm_test_x = gd.normalize(array_start, array_end, test_x)
test_y_arg = gd.argsort_list(test_x)
#compare to regular algorithms
# 1. sorted() built-in Timsort algorithms O(NlogN)
# 2. O(N^2) algorithms
merge_start = time.time()
test_y = gd.sorted_array(norm_test_x)
merge_end = time.time()
N2_start = time.time()
out = gd.N2_sort(norm_test_x)
N2_end = time.time()
# Start training
with tf.Session() as sess:
# Run the initializer
sess.run(init)
tot_acc = 0
loop_count = 0
#set timer
start = time.time()
for step in range(1, num_steps+1):
#print("Weight: ", sess.run(weights['h1']))
#print("Bias: ", sess.run(biases['b1']))
batch_x, batch_y = gd.next_batch(batch_size, normalized_array, labels)
# Run optimization op (backprop)
#print("Array: ", batch_x)
#print("L1: ", sess.run(logits, feed_dict={X: batch_x, Y: batch_y}))
#print("X = ", sess.run(X, feed_dict= {X:batch_x}))
sess.run(train_op, feed_dict={X: batch_x, Y: batch_y})
if step % display_step == 0 or step == 1:
# Calculate batch loss and accuracy
#print("Pred: ", sess.run(l2,feed_dict={X: batch_x, Y: batch_y}))
loss, acc = sess.run([loss_op, accuracy], feed_dict={X: batch_x,
Y: batch_y})
tot_acc += acc
loop_count += 1
print("Step " + str(step) + ", Minibatch Loss= " + \
"{:.4f}".format(loss) + ", Training Accuracy= " + \
"{:.3f}".format(acc))
end = time.time()
print("Training Complete, Time Used: ", (end-start))
print("Averaged Training Accuray: ", tot_acc/loop_count)
print("Optimization Finished!")
#test_x = [[0.3, 0.9, 0.7, 0.4, 0.1],[0.6, 0.3, 0.1, 0.9, 0.5], [0.2, 0.4, 0.6, 0.9, 0.7]]
ts = time.time()
pred, pred_acc = sess.run([prediction, accuracy], feed_dict = {X: norm_test_x, Y:test_y})
tend = time.time()
#print("Expected Output: ", test_y)
print("Testing Complete, Time Used: ", (tend-ts))
print("Time Used with MergeSort: ", (merge_end-merge_start))
print("Time Used with N2 sort: ", (N2_end-N2_start))
return pred, pred_acc
prediction, test_acc = train(0, 100, 10, num_array=100000, num_test=100000)
#print("Test Pred: ", prediction)
#get score of sortedness
bad_score = 0
bad_count = 0
for i in range(len(prediction)):
score = st.get_score(list(prediction[i]))
if (score < 1.0):
#print(score)
bad_score += score
bad_count += 1
print("Test Accuracy: ", test_acc)
print("Average Score of Sortedness for Bad Outputs: ", bad_score/bad_count)