Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
algorithms-python/machine_learning/gradient_descent.py at master · zinating/algorithms-python · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
zinating
/
algorithms-python
Public
forked from
TheAlgorithms/Python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
algorithms-python
/
machine_learning
/
gradient_descent.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
136 lines (117 loc) · 4.26 KB
master
Breadcrumbs
algorithms-python
/
machine_learning
/
gradient_descent.py
Copy path
Top
File metadata and controls
Code
Blame
136 lines (117 loc) · 4.26 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
"""
Implementation of gradient descent algorithm for minimizing cost of a linear hypothesis
function.
"""
import
numpy
# List of input, output pairs
train_data
=
(
((
5
,
2
,
3
),
15
),
((
6
,
5
,
9
),
25
),
((
11
,
12
,
13
),
41
),
((
1
,
1
,
1
),
8
),
((
11
,
12
,
13
),
41
),
)
test_data
=
(((
515
,
22
,
13
),
555
), ((
61
,
35
,
49
),
150
))
parameter_vector
=
[
2
,
4
,
1
,
5
]
m
=
len
(
train_data
)
LEARNING_RATE
=
0.009
def
_error
(
example_no
,
data_set
=
"train"
):
"""
:param data_set: train data or test data
:param example_no: example number whose error has to be checked
:return: error in example pointed by example number.
"""
return
calculate_hypothesis_value
(
example_no
,
data_set
)
-
output
(
example_no
,
data_set
)
def
_hypothesis_value
(
data_input_tuple
):
"""
Calculates hypothesis function value for a given input
:param data_input_tuple: Input tuple of a particular example
:return: Value of hypothesis function at that point.
Note that there is an 'biased input' whose value is fixed as 1.
It is not explicitly mentioned in input data.. But, ML hypothesis functions use it.
So, we have to take care of it separately. Line 36 takes care of it.
"""
hyp_val
=
0
for
i
in
range
(
len
(
parameter_vector
)
-
1
):
hyp_val
+=
data_input_tuple
[
i
]
*
parameter_vector
[
i
+
1
]
hyp_val
+=
parameter_vector
[
0
]
return
hyp_val
def
output
(
example_no
,
data_set
):
"""
:param data_set: test data or train data
:param example_no: example whose output is to be fetched
:return: output for that example
"""
if
data_set
==
"train"
:
return
train_data
[
example_no
][
1
]
elif
data_set
==
"test"
:
return
test_data
[
example_no
][
1
]
def
calculate_hypothesis_value
(
example_no
,
data_set
):
"""
Calculates hypothesis value for a given example
:param data_set: test data or train_data
:param example_no: example whose hypothesis value is to be calculated
:return: hypothesis value for that example
"""
if
data_set
==
"train"
:
return
_hypothesis_value
(
train_data
[
example_no
][
0
])
elif
data_set
==
"test"
:
return
_hypothesis_value
(
test_data
[
example_no
][
0
])
def
summation_of_cost_derivative
(
index
,
end
=
m
):
"""
Calculates the sum of cost function derivative
:param index: index wrt derivative is being calculated
:param end: value where summation ends, default is m, number of examples
:return: Returns the summation of cost derivative
Note: If index is -1, this means we are calculating summation wrt to biased
parameter.
"""
summation_value
=
0
for
i
in
range
(
end
):
if
index
==
-
1
:
summation_value
+=
_error
(
i
)
else
:
summation_value
+=
_error
(
i
)
*
train_data
[
i
][
0
][
index
]
return
summation_value
def
get_cost_derivative
(
index
):
"""
:param index: index of the parameter vector wrt to derivative is to be calculated
:return: derivative wrt to that index
Note: If index is -1, this means we are calculating summation wrt to biased
parameter.
"""
cost_derivative_value
=
summation_of_cost_derivative
(
index
,
m
)
/
m
return
cost_derivative_value
def
run_gradient_descent
():
global
parameter_vector
# Tune these values to set a tolerance value for predicted output
absolute_error_limit
=
0.000002
relative_error_limit
=
0
j
=
0
while
True
:
j
+=
1
temp_parameter_vector
=
[
0
,
0
,
0
,
0
]
for
i
in
range
(
0
,
len
(
parameter_vector
)):
cost_derivative
=
get_cost_derivative
(
i
-
1
)
temp_parameter_vector
[
i
]
=
(
parameter_vector
[
i
]
-
LEARNING_RATE
*
cost_derivative
)
if
numpy
.
allclose
(
parameter_vector
,
temp_parameter_vector
,
atol
=
absolute_error_limit
,
rtol
=
relative_error_limit
,
):
break
parameter_vector
=
temp_parameter_vector
print
((
"Number of iterations:"
,
j
))
def
test_gradient_descent
():
for
i
in
range
(
len
(
test_data
)):
print
((
"Actual output value:"
,
output
(
i
,
"test"
)))
print
((
"Hypothesis output:"
,
calculate_hypothesis_value
(
i
,
"test"
)))
if
__name__
==
"__main__"
:
run_gradient_descent
()
print
(
"
\n
Testing gradient descent for a linear hypothesis function.
\n
"
)
test_gradient_descent
()
You can’t perform that action at this time.