Skip to content

Commit 9c2c814

Browse files
committed
2 parents 44ebf9b + 1f20dcc commit 9c2c814

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/source/content/supervised/bayes.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ when features are not counts and include decimal values.
121121
**Figure 2. A normal distribution with the iconic bell curve shape**
122122
[`code`__]
123123

124-
.. __: /code/supervised/Naive_Bayes/bell_curve.py
124+
.. __: https://github.com/machinelearningmindset/machine-learning-course/blob/master/code/supervised/Naive_Bayes/bell_curve.py
125125

126126
The relevant code is available in the gaussian.py_ file.
127127

128-
.. _gaussian.py: /code/supervised/Naive_Bayes/gaussian.py
128+
.. _gaussian.py: https://github.com/machinelearningmindset/machine-learning-course/blob/master/code/supervised/Naive_Bayes/gaussian.py
129129

130130
In the code, we try and guess a color from given RGB percentages. We create
131131
some data to work with where each data point represents an RGB triple. The
@@ -154,7 +154,7 @@ should use a Bernoulli model instead.
154154

155155
The relevant code is available in the multinomial.py_ file.
156156

157-
.. _multinomial.py: /code/supervised/Naive_Bayes/multinomial.py
157+
.. _multinomial.py: https://github.com/machinelearningmindset/machine-learning-course/blob/master/code/supervised/Naive_Bayes/multinomial.py
158158

159159
The code is based on our fruit example. In the code, we try and guess a fruit
160160
from given characteristics. We create some data to work with where each data
@@ -186,7 +186,7 @@ Bernoulli model.
186186

187187
The relevant code is available in the bernoulli.py_ file.
188188

189-
.. _bernoulli.py: /code/supervised/Naive_Bayes/bernoulli.py
189+
.. _bernoulli.py: https://github.com/machinelearningmindset/machine-learning-course/blob/master/code/supervised/Naive_Bayes/bernoulli.py
190190

191191
In the code, we try and guess if something is a duck or not based on certain
192192
characteristics it has. We create some data to work with where each data point

0 commit comments

Comments
 (0)