感觉python里非常多,请问R里有没有稳定的、值得推荐的深度学习或者人工神经网络的包?
谢谢!!
3个回答
现在tensorflow也有了。R Interface to TensorFlow
SofaSofa数据科学社区DS面试题库 DS面经
你好!
http://sofasofa.io/tutorials/python_gradient_descent/3.php
# 开始迭代
i = 1
while np.abs(loss_new - loss) > tol_L:
beta = update_beta(beta, alpha, grad)
grad = compute_grad(beta, x, y)
loss = loss_new
loss_new = rmse(beta, x, y)
我仔细想了想,应该把while里的
beta = update_beta(beta, alpha, grad)
grad = compute_grad(beta, x, y)
调换一下顺序,盼回复,谢谢染盘!
-
qingyunhe
2019-01-08 14:13
楼上的朋友,去板凳区发呗,在这个不相关的地方发也没人注意
-
WinJ
2019-01-08 14:25