Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Implement Proposals.HSlice #45

Draft
wants to merge 28 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
bc005c8
[WIP] Implement Proposals.HSlice
SaranjeetKaur Jul 9, 2020
5114b2e
update Proposals.HSlice
SaranjeetKaur Jul 10, 2020
c7d1795
update Proposals.HSlice
SaranjeetKaur Jul 10, 2020
2af40c1
update Proposals.HSlice
SaranjeetKaur Jul 11, 2020
142c3f4
Update Proposals.jl
SaranjeetKaur Jul 21, 2020
2bb8517
Merge branch 'master' into patch-6
SaranjeetKaur Jul 21, 2020
0bd8438
Update Proposals.jl
SaranjeetKaur Jul 21, 2020
9bcbca4
Merge pull request #15 from TuringLang/master
SaranjeetKaur Jul 22, 2020
95036eb
Update Proposals.jl
SaranjeetKaur Jul 23, 2020
a82b7ac
include Proposals.HSlice
SaranjeetKaur Jul 23, 2020
99828f0
include Uniform in Distributions
SaranjeetKaur Jul 23, 2020
3c39ae9
Update Proposals.jl
SaranjeetKaur Jul 23, 2020
3a00633
include HSlice
SaranjeetKaur Jul 23, 2020
2b9ec69
include HSlice
SaranjeetKaur Jul 23, 2020
eb48700
include HSlice
SaranjeetKaur Jul 23, 2020
d40e37e
include Proposals.HSlice
SaranjeetKaur Jul 23, 2020
df89c30
update Proposals.HSlice
SaranjeetKaur Jul 23, 2020
4f145b8
test fmove in .HSlice
SaranjeetKaur Jul 23, 2020
f8dcf40
edit pick point randomly in u_in
SaranjeetKaur Jul 24, 2020
022480b
add parentheses (i, (nl, nm, nr)), end while
SaranjeetKaur Jul 29, 2020
07f984d
remove Uniform from using Distributions
SaranjeetKaur Jul 29, 2020
fceacc2
include using LinearAlgebra
SaranjeetKaur Jul 29, 2020
4923930
Update sampling.jl
SaranjeetKaur Jul 29, 2020
89cb7dc
Update Proposals.jl
SaranjeetKaur Jul 29, 2020
e0a1c1f
Update Proposals.jl
SaranjeetKaur Jul 29, 2020
97c0cdc
Update Proposals.jl
SaranjeetKaur Jul 29, 2020
520b563
Update Proposals.jl
SaranjeetKaur Jul 29, 2020
5478297
whitespaces
SaranjeetKaur Jul 29, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/README.jmd
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ vline!([1/2 - π/tmax, 1/2, 1/2 + π/tmax], c=:black, ls=:dash, subplot=2)
@doc Proposals.RSlice
```
---
```julia; echo=false
@doc Proposals.HSlice
```
---
### Convergence
```julia; echo=false
@doc dlogz_convergence
Expand Down
2 changes: 1 addition & 1 deletion src/NestedSamplers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import AbstractMCMC: AbstractSampler,
sample_end!,
bundle_samples,
mcmcsample
using Distributions: quantile, UnivariateDistribution
using Distributions: quantile, UnivariateDistribution, Uniform
using MCMCChains: Chains
import StatsBase
using StatsFuns: logaddexp,
Expand Down
Loading