Skip to content

Commit 178b0ce

Browse files
update urls supervised
1 parent 630b682 commit 178b0ce

13 files changed

+14
-0
lines changed

supervised_class/app.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
import pickle
34
import numpy as np

supervised_class/app_caller.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
import requests
34
import numpy as np

supervised_class/app_trainer.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
import pickle
34
import numpy as np

supervised_class/bayes.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
# This is an example of a Bayes classifier on MNIST data.
34

supervised_class/dt.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
# Decision Tree for continuous-vector input, binary output
34
import numpy as np

supervised_class/knn.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
# This is an example of a K-Nearest Neighbors classifier on MNIST data.
34
# We try k=1...5 to show how we might choose the best k.

supervised_class/knn_donut.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
from knn import KNN
34
from util import get_donut

supervised_class/knn_fail.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
import numpy as np
34
import matplotlib.pyplot as plt

supervised_class/knn_xor.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
from knn import KNN
34
from util import get_xor

supervised_class/nb.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
# This is an example of a Naive Bayes classifier on MNIST data.
34

supervised_class/perceptron.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
import numpy as np
34
import matplotlib.pyplot as plt

supervised_class/regression.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
2+
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
13
import numpy as np
24
import matplotlib.pyplot as plt
35
from sklearn.neighbors import KNeighborsRegressor

supervised_class/util.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python
12
# https://www.udemy.com/data-science-supervised-machine-learning-in-python
23
import numpy as np
34
import pandas as pd

0 commit comments

Comments
 (0)