My coursework for the class Intro to Machine Learning at Udacity (UD 120). Covers supervised learning algorithms, evaluating and validating trained models. Contains spoilers.
|
hace 1 semana | |
---|---|---|
.github | hace 3 años | |
choose_your_own | hace 3 semanas | |
datasets_questions | hace 2 semanas | |
decision_tree | hace 3 semanas | |
evaluation | hace 3 años | |
feature_selection | hace 1 semana | |
final_project | hace 11 meses | |
k_means | hace 2 semanas | |
naive_bayes | hace 3 semanas | |
outliers | hace 2 semanas | |
pca | hace 1 semana | |
regression | hace 2 semanas | |
svm | hace 3 semanas | |
text_learning | hace 1 semana | |
tools | hace 2 semanas | |
validation | hace 1 semana | |
.gitignore | hace 2 años | |
CHANGELOG.md | hace 3 años | |
CODEOWNERS | hace 3 años | |
README.md | hace 11 meses | |
requirements.txt | hace 3 años |
Starter project code for students taking Udacity ud120
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.
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.