Improve computing time and memory consumption of ordinary Kriging #50
Labels
Performance
Performance related stuff.
Refactoring
Code-Refactoring needed here
wontfix
This will not be worked on
As seen in issue #36 our current Kriging implementation runs into memory problems, if the data sets get larger.
As Kriging is a local predictor, it should be sufficient, to only use the nearest observations of the target point, say everything within 2 times the correlation length.
I just tested some existing stuff from scipy and it looks pretty promising:
Not only would we cut off a lot of meaningless points, but we would also facilitate a sparse matrix. Of course, this means some refactoring of the Kriging code.
The text was updated successfully, but these errors were encountered: