Git Product home page Git Product logo

Comments (4)

hpesonen avatar hpesonen commented on September 21, 2024 1

Closing this due to inactivity.

from elfi.

hpesonen avatar hpesonen commented on September 21, 2024

Hi!

Have you given pool for the inference method (see the attached example)?
If you're dealing with "accepted" simulations, then you're doing rejection sampling or smc? You can look at the results-object which contains the accepted samples for each of the nodes. e.g. result.outputs['t1']. If you want all the generated samples, you can now access the batches in pool.stores['t1'].

import elfi
from elfi.examples import ma2

# load the model from elfi.examples
model = ma2.get_model()

# Set up output pool for the desired nodes
pool = elfi.OutputPool(['MA2', 'S1', 'S2', 't1', 't2'])
rej = elfi.Rejection(model['d'], batch_size=10, pool=pool)
result = rej.sample(n_samples=100, quantile=0.2)
print("Accepted samples of node \'t1\' = \n" + str(result.outputs['t1']))
print("Generated samples from node \'t1\' = \n" + str(pool.stores['t1']))

from elfi.

alex-schaaf avatar alex-schaaf commented on September 21, 2024

Thanks for the quick response @hpesonen !

Yes I do hand the pool = elfi.OutputPool instance to the inference method (elfi.Rejection(d, pool=pool)). The MA2 example also works fine: I can access both the result.outputs and the pool.stores. Although the results.outputs does not contain the node outputs from MA2, S1 and S2 - just from d, t1 and t2.

In my own model result.outputs only contains the prior samples as well as the output of my distance function - but not of either the summary nor the simulator function. My simulator function output is a set of tuples (graph edges) that get compared to the observation(s) using a custom Summary statistic function (Jaccard index), which outputs a float. Could the set be a dtype that can't get stored?

from elfi.

hpesonen avatar hpesonen commented on September 21, 2024

Could you include a small reproducible example of the issue? You could give keyword output_names (list) to Rejection to get the node outputs from the ELFI graph. However, unfortunately this feature currently supports only numpy arrays and won't help if your simulator data are sets.

You should be able to access all the samples you have generated via OutputPool even if the node output is e.g. a list of sets of size batch_size. And if you use Rejection, you could manually choose and store only samples with the lowest discrepancy.

from elfi.

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.