SOAPify.distances
This submodules contaisn a collection of SOAP distances
Functions
|
the SOAP distance between two SOAP fingerprints |
|
the SOAP distance between two normalized SOAP fingerprints The pre-normalized vectors should net some performace over the classic kernel |
|
The SOAP Kernel with a variable power |
|
a simpler SOAP Kernel than |
|
a simpler SOAP distance than |
- SOAPify.distances.SOAPdistanceNormalized(x, y)[source]
the SOAP distance between two normalized SOAP fingerprints The pre-normalized vectors should net some performace over the classic kernel
- Parameters
x (np.ndarray) – a normalized SOAP fingerprint
y (np.ndarray) – a normalized SOAP fingerprint
- Returns
the distance between the two fingerprints, between \(0\) and \(2\)
- Return type
- SOAPify.distances.simpleKernelSoap(x, y)[source]
a simpler SOAP Kernel than
KernelSoap(), power is always 1- Parameters
x (np.ndarray) – a SOAP fingerprint
y (np.ndarray) – a SOAP fingerprint
- Returns
kernel value
- Return type
- SOAPify.distances.simpleSOAPdistance(x, y)[source]
a simpler SOAP distance than
SOAPdistance(), power is always 1- Parameters
x (np.ndarray) – a SOAP fingerprint
y (np.ndarray) – a SOAP fingerprint
- Returns
the distance between the two fingerprints, between \(0\) and \(2\)
- Return type