Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hyperparameters and Parameters | Chan`s Jupyter #95

Open
utterances-bot opened this issue Jan 1, 2024 · 1 comment
Open

Hyperparameters and Parameters | Chan`s Jupyter #95

utterances-bot opened this issue Jan 1, 2024 · 1 comment

Comments

@utterances-bot
Copy link

Hyperparameters and Parameters | Chan`s Jupyter

In this introductory chapter you will learn the difference between hyperparameters and parameters. You will practice extracting and analyzing parameters, setting hyperparameter values for several popular machine learning algorithms. Along the way you will learn some best practice tips & tricks for choosing which hyperparameters to tune and what values to set & build learning curves to analyze your hyperparameter choices. This is the Summary of lecture “Hyperparameter Tuning in Python”, via datacamp.

https://goodboychan.github.io/python/datacamp/machine_learning/2020/08/05/01-Hyperparameters-and-Parameters.html

Copy link

new version comes with changes in the library, anyone who find the similar problem with knn data type parsing scheme, pls change it to the code below in order to run sucessfully.

Fit each to the training data & produce predictions

knn_5_predictions = knn_5.fit(X_train.values, y_train.values).predict(X_test.values)
knn_10_predictions = knn_10.fit(X_train.values, y_train.values).predict(X_test.values)
knn_20_predictions = knn_20.fit(X_train.values, y_train.values).predict(X_test.values)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants