tensorflow实现多元线性回归时预测出的参数为nan

Posted bluesl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow实现多元线性回归时预测出的参数为nan相关的知识,希望对你有一定的参考价值。

这是由于在用feed_dict 进行数据喂养之前没有做数据归一化:

解决办法:

使用sklearn包中的preprocessing做归一化:

大妈如下

from sklearn import preprocessing 
example是我们要归一化的数据
scaler = preprocessing.StandardScaler().fit(example)
            print(scaler.mean_, scaler.scale_)
            x_data_standard = scaler.transform(example)

 

以上是关于tensorflow实现多元线性回归时预测出的参数为nan的主要内容,如果未能解决你的问题,请参考以下文章

线性回归

使用 Tensorflow 的多元线性回归模型

Tensorflow 多元线性回归结果为 NaN

多元线性回归问题(Tensorflow 求解)

如何在tensorflow中实现多元线性随机梯度下降算法?

3. 一元多元逻辑回归自定义实现——tensorflow2