GithubHelp home page GithubHelp logo

Comments (2)

rth avatar rth commented on May 21, 2024

@bsmurphy Thanks for this idea!

The current situation (at least with ordinary kriging) is that to solve the linear kriging system we use,

  1. matrix inversion in _exec_loop (loop backend), _exec_vector (vectorized backend) and _c_exec_loop (C loop backend) .

The linalg.solve uses a LU decomposition internally , so I guess the questions are,

  1. would it be faster to get rid of matrix inversion, and use LU decomposition instead?
  2. in the cases when linalg.solve is used repeatedly inside a loop could we precompute the LU decomposition outside of the loop and solve a simpler system in the loop?

Both sound interesting and would be worth exploring (strarting from the pure Python implementations that are easier to change). In any case we need benchmarks to see how it would impact performance and memory use (cf. PR #36) ..

from pykrige.

MuellerSeb avatar MuellerSeb commented on May 21, 2024

We should use the properties of the kriging matrix to optimize that.
The kriging equation can always be reformulated to use the covariance-matrix instead of the semi-variogram-matrix (as done now). Then, this part of the matrix is a symmetric and positive definite matrix (if we use a valid covariance model), which could be tackled by the Cholesky decomposition. The full inversion could then be computed by block matrix-inversion as stated here: #52 (comment)

from pykrige.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.