1

我正在使用 numpy genfromtxt 加载 csv 文件。前 4 列是特征,最后一列是目标数据。

当我运行代码时,我得到了 nan rmse 结果。

谁能解释为什么?

X = dataset[:,0:4]
y = dataset[:,4]

x_train, x_test, y_train, y_test = train_test_split(
X, y, test_size=0.3)


grnnet = algorithms.GRNN(std=0.5, verbose=True)

grnnet.train(x_train, y_train)

error = scorer(grnnet, x_test, y_test)

print("GRNN RMSLE = {:.3f}\n".format(error))
4

1 回答 1

0

建议先缩放数据再试。为了您的方便:

from sklearn import preprocessing
X = preprocessing.minmax_scale(X)
于 2019-06-03T03:25:12.490 回答