我一直在尝试使用我在 Matlab 中学习的 tensorflow 在 python 中创建单变量逻辑回归模型(Andrew ng 在 Coursera 上的 ML 课程)。模型收敛,但仅当初始 theta0 和 theta1 变量定义为小(大约 1.00)但如果初始值设置为 100.00 则将收敛值返回为 nan。当学习率增加时也会发生同样的事情。蟒蛇代码是
import tensorflow as tf
import numpy as np
import os
import matplotlib.pyplot as plt
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
epoch = 100000
x_data = (np.random.rand(100)*100).astype(np.float64)
y_data = np.vectorize(lambda y: 0.00 if y < 50.00 else 1.00)(x_data)
theta0 = tf.Variable(1, dtype=tf.float64)
theta1 = tf.Variable(-1, dtype=tf.float64)
hypothesis = theta0 + (theta1 * x_data)
hypothesis = tf.sigmoid(hypothesis)
term1 = -(y_data * tf.log(hypothesis))
term2 = -((1-y_data) * tf.log(1-hypothesis))
loss = tf.reduce_mean(term1 + term2)
optimizer = tf.train.GradientDescentOptimizer(0.006).minimize(loss)
init_var = tf.global_variables_initializer()
train_data = []
with tf.Session() as sess:
sess.run(init_var)
for i in range(epoch):
train_data.append(sess.run([optimizer, theta0, theta1, loss])[1:])
if i%100==0:
print("Epoch ", i, ":", sess.run([theta0, theta1, loss]))
对所描述的代码行为和更正的解释,甚至是用于上述目的的更好的代码,将不胜感激。