fatf.utils.distances
.hamming_point_distance¶
-
fatf.utils.distances.
hamming_point_distance
(y: Union[numpy.ndarray, numpy.void], X: numpy.ndarray, **kwargs) → numpy.ndarray[source]¶ Calculates the Hamming distance between
y
and every row ofX
.y
has to be a 1-dimensional numerical numpy array or a row of a structured numpy array (i.e. numpy’s void) andX
has to be a 2-dimensional numerical numpy array. The length ofy
has to be the same as the width ofX
.- Parameters
- yUnion[numpy.ndarray, numpy.void]
A numpy array (has to be 1-dimensional and non-numerical) used to calculate the distances from.
- Xnumpy.ndarray
A numpy array (has to be 2-dimensional and non-numerical) to which rows the distances are calculated.
- **kwargsboolean
Keyword arguments that are passed to the
fatf.utils.distances.hamming_distance_base
function responsible for calculating the Hamming distance.
- Returns
- distancesnumpy.ndarray
An array of Hamming distances between
y
and every row ofX
.
- Raises
- IncorrectShapeError
Either
y
is not 1-dimensional orX
is not 2-dimensional or the length ofy
is not equal to the number of columns inX
.- ValueError
Either of the input arrays is not purely textual.