Git Product home page Git Product logo

Comments (4)

fjosw avatar fjosw commented on July 28, 2024

Good point, when I wrote the json export routine for the correlators I did not have this case in mind and assumed that None values would only occur at the very beginning or end of the correlator (through the padding). Accounting for this special case could be a bit more complicated. Is this an essential feature for you? Otherwise we could just check for these special cases and issue an Exception.

from pyerrors.

JanNeuendorf avatar JanNeuendorf commented on July 28, 2024

Honestly, this is pretty important to me. The module is set up in such a way, that a value could be None for any number of reasons. It would be pretty weird, if you could do everything with a correlator that has missing values, but you could not save it.

from pyerrors.

fjosw avatar fjosw commented on July 28, 2024

I don't see a very simple solution to this problem. The relevant line of code can be found in https://github.com/fjosw/pyerrors/blob/develop/pyerrors/input/json.py#L167
For now I cut out the paddings and convert the remainder into a three dimensional numpy array which I then write to the file. If the array contains None entries the conversion to the numpy array does not work properly (numpy issues an explicit warning "Creating an ndarray from ragged nested sequences"). I see two options:

  • We could split the correlator at the None entries and write the individual blocks as an array. The problem with this approach is that reassembling the block might be non trivial and the information about the blocks has to be saved somewhere.
  • Alternatively we could replace the None entries by numpy.arrays of the correct size containing a "special" value (something like np.inf? This has to play well with the json parser). When reading the file one could then reconstruct these blocks as None.

from pyerrors.

JanNeuendorf avatar JanNeuendorf commented on July 28, 2024

Yes, i was just about to suggest the second approach.
I would use np.nan since it is a bit clearer. Having some matrices of nan will probably be compressed anyway. So i do not see a huge downside to doing it this way.

from pyerrors.

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.