Giter VIP home page Giter VIP logo

engine's Introduction

engine

Gitter

A Generic Framework for Likelihood-Free Inference

Installation

It is recommended to work in an environment when running these experiments. If you are using Anaconda, e.g.:

conda create -n engine
conda activate engine

To install, run:

pip install -e .

Examples

See examples/.

engine's People

Contributors

jan-matthis avatar eiffl avatar

Stargazers

Ji Won Park avatar  avatar Johann Brehmer avatar

Watchers

James Cloos avatar  avatar  avatar James Zhu avatar Tom Charnock avatar Ji Won Park avatar

engine's Issues

Discussion on the design document

I have added a design document here to document our choices of interface and implementation. This issue can be used for discussions on the docucment.

Define model definition

The first step is to define how a model will be specified to the engine. To get the ball rolling, here is how pyMC3 defines a model and runs inference:

with pm.Model() as model:
    mu = pm.Normal('mu', mu=0, sd=1)
    obs = pm.Normal('observations', mu=mu, sd=0.1, observed=y)
    trace = sample(2000, cores=2)  # Automatically runs the inference using NUTS

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.