Looking for Аналіз та обробка великих данних test answers and solutions? Browse our comprehensive collection of verified answers for Аналіз та обробка великих данних at veem.nltu.edu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Розгляньте код:
paramGrid = ParamGridBuilder() \
.addGrid(svc.maxIter, [10]) \
.addGrid(svc.regParam, [0.1, 0.01]) \
.addGrid(svc.threshold, [0.0, 0.5]) \
.addGrid(svc.standardization, [True, False]) \
.build()
cv = CrossValidator(estimator=pipeline, estimatorParamMaps=paramGrid, numFolds=4)
Скільки всього моделей буде навчено в процесі крос-валідації (БЕЗ фінальної моделі)?