Skip to content

Instantly share code, notes, and snippets.

View mGalarnyk's full-sized avatar

Michael Galarnyk mGalarnyk

View GitHub Profile
@mGalarnyk
mGalarnyk / adviceApplyingMachineLearning.md
Created August 8, 2017 07:35
Machine Learning (Stanford) Coursera Advice for Applying Machine Learning Quiz (Week 6, Quiz 1) for the github repo: https://github.com/mGalarnyk/datasciencecoursera/tree/master/Stanford_Machine_Learning

Machine Learning Week 6 Quiz 1 (Advice for Applying Machine Learning) Stanford Coursera

Github repo for the Course: Stanford Machine Learning (Coursera)
Quiz Needs to be viewed here at the repo (because the questions and some image solutions cant be viewed as part of a gist)

Question 1

Answer | Explanation

@mGalarnyk
mGalarnyk / PrincipleComponentAnalysisQuiz.md
Created July 20, 2017 01:29
Machine Learning (Stanford) Principle Component Analysis (Week 8, Quiz 2) for the github repo: https://github.com/mGalarnyk/datasciencecoursera/tree/master/Stanford_Machine_Learning

Machine Learning Week 8 Quiz 2 (Principle Component Analysis) Stanford Coursera

Github repo for the Course: Stanford Machine Learning (Coursera)
Quiz Needs to be viewed here at the repo (because the image solutions cant be viewed as part of a gist)

Question 1

@mGalarnyk
mGalarnyk / UnsupervisedLearningStanfordCoursera.md
Created July 19, 2017 20:25
Machine Learning (Stanford) Coursera Unsupervised Learning Quiz (Week 8, Quiz 1) for the github repo: https://github.com/mGalarnyk/datasciencecoursera/tree/master/Stanford_Machine_Learning

Machine Learning Week 8 Quiz 1 (Unsupervised Learning) Stanford Coursera

Github repo for the Course: Stanford Machine Learning (Coursera)
Quiz Needs to be viewed here at the repo (because the image solutions cant be viewed as part of a gist)

Question 1

True or False | Statement | Explanation

"""
Write a program that prints the numbers from 1 to 20. But for multiples of three, print 'Fizz'
instead of the number and for the multiples of five print 'Buzz'.
For numbers which are multiples of both three and five print 'FizzBuzz'.
"""
for num in range(1,21):
string = ""
if num % 3 == 0:
string = string + "Fizz"
@mGalarnyk
mGalarnyk / digits.ipynb
Last active November 6, 2018 05:31
Logistic Regression using Python (Sklearn, NumPy, MNIST, Handwriting Recognition, Matplotlib) on the Digit Dataset for the youtube video: https://www.youtube.com/watch?v=71iXeuKFcQM
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mGalarnyk
mGalarnyk / Neural NetworksRepresentationStanfordCoursera.md
Created June 29, 2017 21:15
Machine Learning (Stanford) Coursera Neural Networks: Representation Quiz (Week 4, Quiz 1) for the github repo: https://github.com/mGalarnyk/datasciencecoursera/tree/master/Stanford_Machine_Learning

Machine Learning Week 4 Quiz 1 (Neural Networks: Representation) Stanford Coursera

Github repo for the Course: Stanford Machine Learning (Coursera)
Quiz Needs to be viewed here at the repo (because the image solutions cant be viewed as part of a gist)

Question 1

True or False | Statement | Explanation

@mGalarnyk
mGalarnyk / wordCount.ipynb
Last active June 23, 2017 19:30
Python Basics 11: Word Count (Filter out Punctuation, Dictionary Manipulation, and Sorting Lists) tutorial for the blog post: https://medium.com/@GalarnykMichael/python-basics-10-dictionaries-and-dictionary-methods-4e9efa70f5b9
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mGalarnyk
mGalarnyk / tuples.ipynb
Last active June 23, 2017 00:11
Python tuple, tuple manipulation, and fibonacci sequence tutorial for the blog post: https://medium.com/@GalarnykMichael/python-basics-9-tuples-tuple-manipulation-and-the-fibonacci-sequence-2d0da4e2d326
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mGalarnyk
mGalarnyk / RegularizationStanfordCoursera.md
Created June 22, 2017 07:57
Machine Learning (Stanford) Coursera Logistic Regression Quiz (Week 3, Quiz 1) for the github repo: https://github.com/mGalarnyk/datasciencecoursera/tree/master/Stanford_Machine_Learning

Machine Learning Week 3 Quiz 2 (Regularization) Stanford Coursera

Github repo for the Course: Stanford Machine Learning (Coursera)
Quiz Needs to be viewed here at the repo (because the image solutions cant be viewed as part of a gist)

Question 1

True or False | Statement | Explanation