train_size = int(np.round(0.8*dataX.shape[0]))
时间: 2023-05-15 20:06:36 浏览: 266
DataX_Python3-master.zip
这是一个编程类的问题,可以回答。这段代码的作用是将数据集的80%作为训练集,20%作为测试集。其中,dataX是数据集的特征矩阵,shape[0]表示数据集的样本数。np.round()函数是四舍五入函数,int()函数是取整函数。
阅读全文
DataX_Python3-master.zip