sklearn的train_test_split函数的random_state
我们使用sklearn进行机器学习之前,一般使用train_test_split来进行数据集的分割,其参数random_state代表什么呢?
>>>from sklearn.model_selection import train_test_split
>>> x = [1,2,3,4,5,6,7,8,9,10]
>>> y = [1,...
原创
2019-04-11 17:04:21 ·
11306 阅读 ·
1 评论