Model parameters vs. hyperparameters
In order to perform hyperparameter tuning, it is important to really understand what hyperparameters are (and what they are not). So let's look at model parameters versus hyperparameters in detail.
Note: The Breast Cancer Wisconsin (Diagnostic) dataset has been loaded as breast_cancer_data for you.
이 연습은 강의의 일부입니다
Hyperparameter Tuning in R
연습 안내
- Use this dataset to fit a linear model with
concavity_meanas response andsymmetry_meanas predictor variable. - Look at the
summary()of this linear model. - Extract the coefficients.
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
# Fit a linear model on the breast_cancer_data.
linear_model <- ___(___)
# Look at the summary of the linear_model.
___
# Extract the coefficients.
___