File tree 13 files changed +14
-0
lines changed
13 files changed +14
-0
lines changed Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
import pickle
3
4
import numpy as np
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
import requests
3
4
import numpy as np
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
import pickle
3
4
import numpy as np
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
# This is an example of a Bayes classifier on MNIST data.
3
4
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
# Decision Tree for continuous-vector input, binary output
3
4
import numpy as np
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
# This is an example of a K-Nearest Neighbors classifier on MNIST data.
3
4
# We try k=1...5 to show how we might choose the best k.
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
from knn import KNN
3
4
from util import get_donut
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
import numpy as np
3
4
import matplotlib .pyplot as plt
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
from knn import KNN
3
4
from util import get_xor
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
# This is an example of a Naive Bayes classifier on MNIST data.
3
4
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
import numpy as np
3
4
import matplotlib .pyplot as plt
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
2
+ # https://www.udemy.com/data-science-supervised-machine-learning-in-python
1
3
import numpy as np
2
4
import matplotlib .pyplot as plt
3
5
from sklearn .neighbors import KNeighborsRegressor
Original file line number Diff line number Diff line change
1
+ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
1
2
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
2
3
import numpy as np
3
4
import pandas as pd
You can’t perform that action at this time.
0 commit comments