Export the hash values, which is the internal state of the MinHash. Returns: numpy.array: The hash values which is a Numpy array.
(self)
| 219 | self.hashvalues = np.minimum(other.hashvalues, self.hashvalues) |
| 220 | |
| 221 | def digest(self): |
| 222 | '''Export the hash values, which is the internal state of the |
| 223 | MinHash. |
| 224 | |
| 225 | Returns: |
| 226 | numpy.array: The hash values which is a Numpy array. |
| 227 | ''' |
| 228 | return copy.copy(self.hashvalues) |
| 229 | |
| 230 | def is_empty(self): |
| 231 | ''' |
no test coverage detected