Skip to content

Commit 71ffc29

Browse files
authored
Merge pull request aimacode#30 from nsurampu/master
Added precision, root mean square and speech recognition
2 parents ba28c33 + 1aa24a0 commit 71ffc29

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

glossary.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1112,6 +1112,10 @@ An agent's **percept sequence** is the complete history of everything the agent
11121112
## pragmatics
11131113
## precedence constraints
11141114
## precision
1115+
1116+
**Precision** is a performance measure often used to describe some model, alongside other measures like *accuracy*, *recall* etc. Precision can be thought of as an efficiency measure of a model. It is given as:
1117+
***Precision = True Positives / (True Positives + False Positives)***
1118+
11151119
## precondition
11161120
## prediction
11171121
## preference elicitation
@@ -1257,7 +1261,13 @@ reinforcements-rewards or punishments.
12571261
## ROC curve
12581262
## rollout
12591263
## Roomba
1260-
## root mean square
1264+
## Root Mean Square (RMS)
1265+
1266+
A mathematical formula, **root mean square** is often used as an error estimator. It is described as the root of the summation of all the squared errors. The formula is given as:
1267+
<br>***square_root[summation(a1^2 + a2^2 + ...)], where a1, a2...are some entities***
1268+
<br> In RMS error estimation, the above squared entities are replaced with squared errors.
1269+
1270+
12611271
## rules
12621272

12631273
# S
@@ -1355,7 +1365,10 @@ The **softmax function** is a mathematical function often used for classificatio
13551365
## specular reflection
13561366
## specularities
13571367
## speech act
1358-
## speech recognition
1368+
## Speech Recognition
1369+
1370+
**Speech recognition** is the process of analyzing audio and ***recognizing*** parts related to speech within the audio file. This process of ***recognition*** may involve simply identifying the speech part, gender identification and also as complex as identifying the words spoken when given an audio. This field often overlaps into the domain of artificial intelligence and machine learning.
1371+
13591372
## split point
13601373
## stable
13611374
## stable model

0 commit comments

Comments
 (0)