Code Monkey home page Code Monkey logo

Comments (8)

cscherrer avatar cscherrer commented on May 18, 2024 2

I like it. I think you should currently be able to do something like

m = @model (alpha, beta, sim) begin
  z ~ Normal(alpha, beta)
  y ~ sim(z, 1)
end

rand(m(alpha=a, beta=b, sim=MySimulator))

We'll be able to get rid of the last argument and use the current module scope once we're done with #42

from soss.jl.

cscherrer avatar cscherrer commented on May 18, 2024 2

Hi @kskyten ,

Thanks to @thautwarm 's recent update (JuliaStaging/GeneralizedGenerated.jl#28), we can get this working:

julia> struct MySimulator
         mu
         sigma
       end;

julia> Base.rand(s::MySimulator) = rand(Normal(s.mu, s.sigma))

julia> m = @model (alpha, beta) begin
         z ~ Normal(alpha, beta)
         y ~ MySimulator(z, 1)
       end;

julia> rand(m(alpha=2,beta=4))
(alpha = 2, beta = 4, z = -2.5523934421776824, y = -2.1025024446789806)

Hope to get a PR set up with this soon :)

from soss.jl.

thautwarm avatar thautwarm commented on May 18, 2024 2

I used to think I can make MySimulator a module... but it seems unnecessary now😄

from soss.jl.

kskyten avatar kskyten commented on May 18, 2024 1

I would like to do this:

struct MySimulator
  mu
  sigma
end

Base.rand(s::MySimulator) = rand(Normal(s.mu, s.sigma))

m = @model (alpha, beta) begin
  z ~ Normal(alpha, beta)
  y ~ MySimulator(z, 1)
end

from soss.jl.

cscherrer avatar cscherrer commented on May 18, 2024 1

@kskyten this now works in 0.8!

from soss.jl.

cscherrer avatar cscherrer commented on May 18, 2024

I think I'm missing something here - how is what you propose different than the draft?

from soss.jl.

thautwarm avatar thautwarm commented on May 18, 2024

Currently, due to the address of performance regression, This feature got lost again:

@gg M function _rand(_::Type{M}, _m::Model, _args) where M <: TypeLevel{Module}

we should re-implement of it in recent iterations.

from soss.jl.

thautwarm avatar thautwarm commented on May 18, 2024

We can allow m.model to store non-models, and do static dispatch on this, certainly we can have this feature again, with no performance loss.

from soss.jl.

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.