Fix innerproduct function to match Dot Product (#1004)

* Fix innerproduct function to match Dot Product

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* Fix formatting

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* Use dot instead

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* Remove parenthesies

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* Remove space

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
This commit is contained in:
Naarcha-AWS 2022-09-01 13:45:08 -05:00 committed by GitHub
parent e2ba736553
commit d65b56fb33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ A space corresponds to the function used to measure the distance between two poi
</tr>
<tr>
<td>innerproduct</td>
<td>\[ Distance(X, Y) = \sum_{i=1}^n (X_i - Y_i) \]</td>
<td>\[ Distance(X, Y) = \sum_{i=1}^n X_iY_i \]</td>
<td>1 / (1 + Distance Function)</td>
</tr>
<tr>