回答編集履歴

1

微修正

2019/10/30 13:42

投稿

qax
qax

スコア622

test CHANGED
@@ -1,10 +1,10 @@
1
1
  ```python
2
2
 
3
- x = tf.placeholder(tf.float32, [None, 400]) #任意の数(None)の400次元のデータ
3
+ x = tf.placeholder(tf.float32, [None, 400]) #任意の数(None)の400次元のデータ (None, 400)
4
4
 
5
5
 
6
6
 
7
- y = tf.layers.dense(x,units=1)
7
+ y = tf.layers.dense(x,units=1) # (None, 1)
8
8
 
9
9
  ```
10
10