My coursework for the class Intro to Machine Learning at Udacity (UD 120). Covers supervised learning algorithms, evaluating and validating trained models. Contains spoilers.

scuti 19e5fe6186 changed n-neighbors=2 to 3 преди 2 месеца
.github d17fde6544 Update manual.yml преди 3 години
choose_your_own ad5a019db0 completed choose-your-algo with k-nearest преди 2 месеца
datasets_questions 782d0902e8 completed dataset questions including optional portions преди 2 месеца
decision_tree 20a5b0d151 completed decision tree mini project преди 2 месеца
evaluation e595dbade6 completed mini-project for evaluation metrics преди 2 месеца
feature_selection 8d087dd286 completed feature selection mini-project преди 2 месеца
final_project 19e5fe6186 changed n-neighbors=2 to 3 преди 2 месеца
k_means cb41f586f3 completed mini-project on clustering преди 2 месеца
naive_bayes a34231badf answered questions for naive bayes mini project преди 2 месеца
outliers f931930611 completed mini-project on outlier detection преди 2 месеца
pca 321bacd8f8 completed PCA mini-project преди 2 месеца
regression 14e9df6244 did mini-project for regressions lesson преди 2 месеца
svm c4a2543b01 powered through SVM quizzes преди 2 месеца
text_learning 8d087dd286 completed feature selection mini-project преди 2 месеца
tools 7152df77f3 completed mini project for text learning преди 2 месеца
validation 187a7ea66e completed validation mini-project преди 2 месеца
.gitignore f35a35c258 Add venv contents to gitignore преди 2 години
CHANGELOG.md 8cb1360cba Migrated Entire Program to Python-3 with Documentation (#302) преди 3 години
CODEOWNERS ccc60e2b7f Create CODEOWNERS преди 3 години
README.md fa360d64f7 Fixed Path issues and Updated Readme.md with Path Note. (#343) преди 1 година
requirements.txt 8cb1360cba Migrated Entire Program to Python-3 with Documentation (#302) преди 3 години

README.md

ud120-projects

Starter project code for students taking Udacity ud120

Setup

  • Create a virtual environment for Python 3.9 or higher.
  • $ pip install -r requirements.txt

Contribution Note

The code in this repo has been upgraded from Python 2 to Python 3 by Siddharth Kekre in this PR. Refer to the Change Log for more details.

Path Note

According to your ud120-projects location you may have to change the path for every sys.path.append(os.path.abspath(("../tools/"))) to sys.path.append(os.path.abspath(("./tools/"))) (Basically '../' to './' for all of the files path) or vice-versa in your .py files.