Skip to content

Commit f0f1e86

Browse files
committed
update
1 parent f415da5 commit f0f1e86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cnn_class/edge_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def main():
8282

8383
# define variables and expressions
8484
X = tf.placeholder(tf.float32, shape=(None, D), name='X')
85-
T = tf.placeholder(tf.float32, shape=(None, K), name='T')
85+
T = tf.placeholder(tf.int32, shape=(None,), name='T')
8686
W1 = tf.Variable(W1_init.astype(np.float32))
8787
b1 = tf.Variable(b1_init.astype(np.float32))
8888
W2 = tf.Variable(W2_init.astype(np.float32))

0 commit comments

Comments
 (0)