Closed HaoZeke closed 2 months ago
Hi @HaoZeke,
The default_model
function is for the Gaussian or Student T process construction itself.
You can use get_default_mlmodel
and give the Inverse distance fingerprint as an argument.
Like this:
from catlearn.regression.gaussianprocess.fingerprint.invdistances import Inv_distances
from catlearn.regression.gaussianprocess.calculator.mlcalc import MLCalculator
fp=Inv_distances(mic=False,sorting=False)
mlmodel=get_default_mlmodel(fp=fp)
mlcalc=MLCalculator(mlmodel=mlmodel)
Best regards, Andreas
Hi @avishart.
I'm setting up the
eon
interface to therestructuring
branch again, and I noticed that thedefault_model
class:Doesn't specify how to use the inverse distances. I was previously constructing the model by hand but that's rather error prone.