Skip to content

Commit

Permalink
Merge 4bde75a into 3a315ce
Browse files Browse the repository at this point in the history
  • Loading branch information
torfjelde committed Mar 10, 2024
2 parents 3a315ce + 4bde75a commit 1d01340
Show file tree
Hide file tree
Showing 7 changed files with 645 additions and 16 deletions.
2 changes: 2 additions & 0 deletions src/Turing.jl
Expand Up @@ -48,6 +48,7 @@ using .Variational
include("optimisation/Optimisation.jl")
using .Optimisation

include("experimental/Experimental.jl")
include("deprecated.jl") # to be removed in the next minor version release

###########
Expand All @@ -70,6 +71,7 @@ export @model, # modelling
ESS,
Gibbs,
GibbsConditional,
GibbsV2,

HMC, # Hamiltonian-like sampling
SGLD,
Expand Down
15 changes: 15 additions & 0 deletions src/experimental/Experimental.jl
@@ -0,0 +1,15 @@
module Experimental

using Random: Random
using AbstractMCMC: AbstractMCMC
using DynamicPPL: DynamicPPL, VarName
using Setfield: Setfield

using Distributions

using ..Turing: Turing
using ..Turing.Inference: gibbs_rerun, InferenceAlgorithm

include("gibbs.jl")

end

0 comments on commit 1d01340

Please sign in to comment.