Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7987897
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T12:16:46+00:00 2026-06-04T12:16:46+00:00

Has anyone used Passage , the PArallel SAmpler GEnerator? Potentially it could be very

  • 0

Has anyone used Passage, the PArallel SAmpler GEnerator?

Potentially it could be very useful to me, but the only documentation I found is the three line README on Github (https://github.com/cscherrer/passage), and the terse API on Hackage.

A simple example of how to run it would be great!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T12:16:47+00:00Added an answer on June 4, 2026 at 12:16 pm

    At a high level, Passage has two important monads to keep in mind: BayesianNetwork and BayesianSimulator.

    First, you build a model in the BayesianNetwork monad:

    myModel :: Int -> BayesianNetwork (Node, Node, [Node])
    myModel n = do
      mu <- normal 0 0.001
      tau <- improperScale
      xs <- replicateM n $ normal mu tau
      return (mu, tau, xs)
    

    This is specified as a generative model, so anything that is not random (here the number of data points n) must be passed as a parameter. Alternatively, we could have put a distribution on n.

    Next, we build a simulator that calls the model:

    mySim :: [Double] -> BayesianSimulator ()
    mySim xs0 = do
      setThreadNum 4
      let n = length xs0
      (mu, tau, xs) <- model $ myModel n
      forM (zip xs xs0) $ \(x, x0) -> observe x x0
      monitor mu
      monitor tau
    

    Finally, take some data:

    xs0 = [1, -1, 2, 2, 2, -2]
    

    and run the simluator:

    main = genSimulator "myExample" (mySim xs0)
    

    This creates a new directory myExample with OpenMP code for the sampler.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Has anyone used this plugin? I don't know if my setup is right, but
Has anyone used Robotium or Calculon for testing Android apps? Are they useful? Any
Has anyone used the Instagram app lately? It has a very neat feature, where,
Has anyone used TUDBC ? This looks interesting, but I wonder how valuable it
Has anyone used both Joone and Encog in production applications? Is there something you
Has anyone used a Java based library for generating excel documents? Preferably support for
We need info about Subversion for iSeries (OpenSource version). Has anyone used it for
Has anyone successfully used Tokyo Cabinet / Tokyo Tyrant with large datasets? I am
I'm just curious to know if anyone has used (successfully) Fusion Charts with Open
Has anyone of you ever used php_writeexcel (http://www.bettina-attack.de/jonny/view.php/projects/php_writeexcel/)? I would like to know if

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.