Skip to content

Commit e982b97

Browse files
committed
update Glossary
1 parent d0a9d31 commit e982b97

File tree

2 files changed

+54
-14
lines changed

2 files changed

+54
-14
lines changed

docs/glossary.md

Lines changed: 44 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,23 +53,34 @@ comments: false
5353

5454
## A {#a}
5555

56-
[]()
56+
57+
[Adversarial attack](#adversarial_attack)
58+
Type of attack which seeks to trick machine learning models into misclassifying inputs by maliciously tampering with input data
5759

5860
## B {#b}
5961

6062
[]()
6163

6264
## C {#c}
6365

64-
[]()
66+
[Classification](#classification)
67+
Process of arranging things in groups which are distinct from each other, and are separated by clearly determined lines of demarcation
6568

6669
## D {#d}
6770

68-
[]()
71+
[Data labeling](#data_labeling)
72+
Process of assigning tags or categories to each data point in a dataset
73+
74+
[Data poisoning](#data_poisoning)
75+
Type of attack that inject poisoning samples into the data
76+
77+
[Deep learning](#deep_learning)
78+
Family of machine learning methods based on artificial neural networks with long chains of learnable causal links between actions and effects
6979

7080
## E {#e}
7181

72-
[]()
82+
[Ensemble](#ensemble)
83+
See: [Model Ensemble](#model_ensemble)
7384

7485
## F {#f}
7586

@@ -85,7 +96,14 @@ comments: false
8596

8697
## I {#i}
8798

88-
[]()
99+
[Input Validation](#input_validation)
100+
Input validation is a technique for checking potentially dangerous inputs in order to ensure that the inputs are safe for processing within the code, or when communicating with other components
101+
102+
[Intrusion Detection Systems (IDS)](#ids)
103+
Security service that monitors and analyzes network or system events for the purpose of finding, and providing real-time or near real-time warning of, attempts to access system resources in an unauthorized manner
104+
105+
[Intrusion Prevention System (IPS)](#ips)
106+
System that can detect an intrusive activity and can also attempt to stop the activity, ideally before it reaches its targets
89107

90108
## J {#j}
91109

@@ -101,39 +119,54 @@ comments: false
101119

102120
## M {#m}
103121

104-
[]()
122+
[MLOps](#mlops)
123+
The selection, application, interpretation, deployment, and maintenance of machine learning models within an AI-enabled system
124+
125+
[Model](#model)
126+
Detailed description or scaled representation of one component of a larger system that can be created, operated, and analyzed to predict actual operational characteristics of the final produced component
127+
128+
[Model ensemble](#model_ensemble)
129+
Art of combining a diverse set of learners (individual models) together to improvise on the stability and predictive power of the model
105130

106131
## N {#n}
107132

108133
[]()
109134

110135
## O {#o}
111136

112-
[]()
137+
[Obfuscation](#obfuscation)
138+
Defense mechanism in which details of the model or training data are kept secret by adding a large amount of valid but useless information to a data store
139+
140+
[Overfitting](#overfitting)
141+
Overfitting is when a statistical model begins to describe the random error in the data rather than the relationships between variables. This occurs when the model is too complex
113142

114143
## P {#p}
115144

116-
[]()
145+
[Perturbation](#perturbation)
146+
Noise added to an input sample
117147

118148
## Q {#q}
119149

120150
[]()
121151

122152
## R {#r}
123153

124-
[]()
154+
[Regularisation](#regularisation)
155+
Controlling model complexity by adding information in order to solve ill-posed problems or to prevent overfitting
125156

126157
## S {#s}
127158

128-
[]()
159+
[Spam](#spam)
160+
The abuse of electronic messaging systems to indiscriminately send unsolicited bulk messages
129161

130162
## T {#t}
131163

132164
[]()
133165

134166
## U {#u}
135167

136-
[]()
168+
[Underfitting](#underfitting)
169+
Underfitting is when a data model is unable to capture the relationship between the input and output variables accurately, generating a high error rate on both the training set and unseen data
137170

138171
## V {#v}
139172

tab_glossary.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ Process of assigning tags or categories to each data point in a dataset
7777
[Data poisoning](#data_poisoning)
7878
Type of attack that inject poisoning samples into the data
7979

80+
[Deep learning](#deep_learning)
81+
Family of machine learning methods based on artificial neural networks with long chains of learnable causal links between actions and effects
82+
8083
## E {#e}
8184

8285
[Ensemble](#ensemble)
@@ -96,11 +99,14 @@ See: [Model Ensemble](#model_ensemble)
9699

97100
## I {#i}
98101

102+
[Input Validation](#input_validation)
103+
Input validation is a technique for checking potentially dangerous inputs in order to ensure that the inputs are safe for processing within the code, or when communicating with other components
104+
99105
[Intrusion Detection Systems (IDS)](#ids)
100-
Security service that monitors and analyzes network or system events for the purpose of finding, and providing real-time or near real-time warning of, attempts to access system resources in an unauthorized manner.
106+
Security service that monitors and analyzes network or system events for the purpose of finding, and providing real-time or near real-time warning of, attempts to access system resources in an unauthorized manner
101107

102108
[Intrusion Prevention System (IPS)](#ips)
103-
System that can detect an intrusive activity and can also attempt to stop the activity, ideally before it reaches its targets.
109+
System that can detect an intrusive activity and can also attempt to stop the activity, ideally before it reaches its targets
104110

105111
## J {#j}
106112

@@ -139,7 +145,8 @@ Overfitting is when a statistical model begins to describe the random error in t
139145

140146
## P {#p}
141147

142-
[]()
148+
[Perturbation](#perturbation)
149+
Noise added to an input sample
143150

144151
## Q {#q}
145152

0 commit comments

Comments
 (0)