Giter Club home page Giter Club logo

Comments (8)

dpfau avatar dpfau commented on July 19, 2024 1

from ferminet.

dpfau avatar dpfau commented on July 19, 2024

from ferminet.

n-gao avatar n-gao commented on July 19, 2024

Thanks for the quick response!
I could work around this issue by modifying the logsumdet function.
The following should work as a drop-in replacement:

def logsumdet(
        xs: Sequence[jnp.ndarray],
        w: Optional[jnp.ndarray] = None) -> jnp.ndarray:
    # Special case if there is only one electron in any channel
    # We can avoid the log(0) issue by not going into the log domain
    dets = [x.reshape(-1) for x in xs if x.shape[-1] == 1]
    dets = functools.reduce(
        lambda a, b: a*b, dets
    ) if len(dets) > 0 else 1

    slogdets = [slogdet(x) for x in xs if x.shape[-1] > 1]
    maxlogdet = 0
    if len(slogdets) > 0:
        sign_in, logdet = functools.reduce(
            lambda a, b: (a[0]*b[0], a[1]+b[1]), slogdets
        )

        maxlogdet = jnp.max(logdet)
        det = sign_in * dets * jnp.exp(logdet - maxlogdet)
    else:
        det = dets

    if w is None:
        result = jnp.sum(det)
    else:
        result = jnp.dot(det, w)

    sign_out = jnp.sign(result)
    log_out = jnp.log(jnp.abs(result)) + maxlogdet
    return sign_out, log_out

This avoids working in the log domain if it's not necessary.

from ferminet.

dpfau avatar dpfau commented on July 19, 2024

from ferminet.

jsspencer avatar jsspencer commented on July 19, 2024

I'm curious about your technical set up (jax, jaxlib, and CUDA versions). The hydrogen atom works fine for me (several thousand iterations), though I agree the jax version is not as careful around this as the TF version.

The energy looks essentially converged by this point so I'm surprised you're hitting a NaN. Given the wavefunction shouldn't(!) contain any nodes, it can only happen far from the nucleus, so an MCMC configuration must have wandered quite a way away. (As an aside, the default step size is way too small for hydrogen -- you should increase it to at least 0.5).

from ferminet.

n-gao avatar n-gao commented on July 19, 2024

Sure, here are the details:

Lib Version
jax 0.2.10
jaxlib 0.1.62
CUDA 10.2

While the mean of the energy looked good, it wasn't converged yet (high variance). I checked the position of the electron and it was in a radius of 3A around the nucleus which isn't very afaik.
The error also occurs at higher step sizes.

from ferminet.

n-gao avatar n-gao commented on July 19, 2024

This error also occurs for Lithium far from the optimum.

I0306 02:47:37.867998 139629635032896 train.py:461] Step 00093: -6.6119 E_h, pmove=0.76
I0306 02:47:38.068941 139629635032896 train.py:461] Step 00094: -6.6105 E_h, pmove=0.76
I0306 02:47:38.270185 139629635032896 train.py:461] Step 00095: -6.6636 E_h, pmove=0.76
I0306 02:47:38.471880 139629635032896 train.py:461] Step 00096: nan E_h, pmove=0.76
I0306 02:47:38.671543 139629635032896 train.py:461] Step 00097: nan E_h, pmove=0.00
I0306 02:47:38.870149 139629635032896 train.py:461] Step 00098: nan E_h, pmove=0.00

Though, only if one sets full_det to False. As far as I can tell #23 fixes this.

On a side note: Is there a particular reason why full_det defaults to True? Isn't a wavefunction only antisymmetric with respect to permutation of electrons of the same spin? Also, it does not align with the definition of FermiNet in the papers.

from ferminet.

jsspencer avatar jsspencer commented on July 19, 2024

Fixed in #23 .

from ferminet.

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.