sanjoe 发表于 2022-8-13 16:11:06

关于参数转换



比如这个模型forest = RandomForestRegressor(min_samples_split=i + 2, random_state=1, n_jobs=-1),

怎么样能实现如下:

string = min_samples_spli

forest = RandomForestRegressor(string =i + 2, random_state=1, n_jobs=-1)

ZhKQYu 发表于 2022-8-13 21:20:20

不明白在说什么,详细一点

xiangjianshinan 发表于 2022-8-14 05:33:50

forest = RandomForestRegressor(min_samples_split=i + 2, random_state=1, n_jobs=-1),

string = i + 2

forest = RandomForestRegressor(string, 1, -1)

或者直接:

forest = RandomForestRegressor(string)
页: [1]
查看完整版本: 关于参数转换