n_stocks = X_train.shape[1]
ニューロンの数を設定
n_neurons_1 = 256
n_neurons_2 = 128
セッションの開始
net = tf.InteractiveSession()
プレースホルダーの作成
X = tf.placeholder(dtype=tf.float32, shape=[None, n_stocks])
Y = tf.placeholder(dtype=tf.float32, shape=[None])
初期化
sigma = 1
weight_initializer = tf.variance_scaling_initializer(mode="fan_avg", distribution="uniform", scale=sigma)
bias_initializer = tf.zeros_initializer()
以下の様なエラーが出ます。
AttributeError Traceback (most recent call last)
<ipython-input-28-2d75e61958d2> in <module>
6
7 # セッションの開始
----> 8 net = tf.InteractiveSession()
9
10 # プレースホルダーの作成
AttributeError: module 'tensorflow' has no attribute 'InteractiveSession'
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/28 22:51