Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cscherrer authored Mar 20, 2022
1 parent 74f4eb4 commit af86727
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ julia> m = @model (x, s) begin

julia> x = zeros(3);

julia> rand(m(x,10))
= 0.2647077728206953, x = [0.06944713402659985, 0.3047980085884222, 0.07621300638873846])
julia> r = rand(m(x,10))
= 9.096155145583953, x = [14.876934886768867, 6.612967845518229, 2.045770246490428])

julia> x
3-element Vector{Float64}:
0.06944713402659985
0.3047980085884222
0.07621300638873846
```
14.876934886768867
6.612967845518229
2.045770246490428

julia>= logdensityof(m(x, 1.0) | (;x), (σ = 1.0,))
-122.91114458882001

2 comments on commit af86727

@cscherrer
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/56955

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" af867272dbe8a8c0a118df4b7fe2551ffebcafa6
git push origin v0.1.0

Please sign in to comment.