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
Copy file name to clipboardExpand all lines: README.md
+18
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ Additionally, if you want a graphical reprentation of the decision tree, you'll
20
20
3.[Support Vector Machine](#svm)
21
21
4.[K-Means Clustering](#k-means)
22
22
5.[Decision Trees](#dec-trees)
23
+
6.[Neural Networks](#nn)
23
24
24
25
<aid="lin-reg"></a>
25
26
## Linear Regression
@@ -114,3 +115,20 @@ Image generated using decision_tree.py.
114
115
-**~78%** with a depth of *4* and *information gain* as attribute selection measure
115
116
-**~76%** with a depth of *3* and *information gain* as attribute selection measure
116
117
-**~76%** with a depth of *4* and *gini impurity* as attribute selection measure
118
+
119
+
<aid="nn"></a>
120
+
## Neural Networks
121
+

122
+
The first neural network declared in neural_network.py
123
+
124
+

125
+
The second network declared in neural_network.py
126
+
127
+
**Definition:**
128
+
> Artificial neural networks (ANN) or connectionist systems are computing systems that are inspired by, but not identical to, biological neural networks that constitute animal brains. Such systems "learn" to perform tasks by considering examples, generally without being programmed with task-specific rules.
0 commit comments