treverhines / RBF

Python package containing the tools necessary for radial basis function (RBF) applications
MIT License
215 stars 50 forks source link

Is there a way to avoid polynomial regularisation with weight matrices ? #31

Closed RomanLF closed 1 year ago

RomanLF commented 1 year ago

Hello Trever,

I read your documentation but I did not find an option to discard polynolmial regularisation with the use of weight_matrix function. Did I miss an option to do so ?

Best regards, Roman

treverhines commented 1 year ago

Sorry for not responding. If you set order=-1 (or set it to any negative number) then no polynomial terms would be used when computing the weight matrix.

RomanLF commented 1 year ago

Thank for your answer !