floswald/SMM.jl
Fork: 25 Star: 79 (更新于 2024-10-17 18:29:43)
license: NOASSERTION
Language: Julia .
Simulated Method of Moments for Julia
SMM.jl: Simulated Method of Moments for Julia
Documentation | Build Status |
---|---|
Notice: this package was previously called MomentOpt.jl.
This package provides a Julia
infrastructure for Simulated Method of Moments estimation, or other problems where we want to optimize a non-differentiable objective function. The setup is suitable for all kinds of likelihood-free estimators - in general, those require evaluating the objective at many regions. The user can supply their own algorithms for generating successive new parameter guesses. We provide a set of MCMC template algorithms. The code can be run in serial or on a cluster.
Installation
In your julia REPL, type
] add SMM
Documentation
Examples
Please check out a fully worked example in src/Examples.jl
.
Here is a working session comparing serial vs parallel performance on a test objective function. Notice that parallel performance hinges on the objective function being reasonably expensive to compute (at least 0.1 seconds per function evaluation) - otherwise the overhead from data transfer is just too high.
julia> using SMM
[ Info: Precompiling SMM [bc769cb7-f249-5bba-802a-79f18cb247ec]
julia> x = SMM.serialNormal(2,200,slow = true)
[ Info: Starting estimation loop.
Progress: 100%|██████████████████████████████████████████████| Time: 0:01:05
┌ Warning: could not find 'filename' in algo.opts - not saving anything
└ @ SMM ~/.julia/dev/SMM/src/mopt/AlgoAbstract.jl:67
[ Info: Done with estimation after 1.1 minutes
summary(MA) = 3×5 DataFrame
Row │ id acc_rate perc_exchanged exchanged_most_with best_val
│ Int64 Float64 Float64 Int64 Float64
─────┼──────────────────────────────────────────────────────────────────
1 │ 1 0.0793651 5.5 2 0.0023224
2 │ 2 0.0819672 8.5 1 0.0126754
3 │ 3 0.115183 4.5 2 0.0145625
(
BGP Algorithm with 3 BGPChains
============================
Algorithm
---------
Current iteration: 200
Number of params to estimate: 2
Number of moments to match: 2
, Plot{Plots.GRBackend() n=2}, Plot{Plots.GRBackend() n=3})
julia> using Distributed
julia> addprocs(2, exeflags="--project=.") # you don't need the `exeflag` if you `add`ed the package regularly!
2-element Array{Int64,1}:
2
3
julia> @everywhere using SMM
julia> x = SMM.serialNormal(2,200,slow = true)
[ Info: Starting estimation loop.
Progress: 100%|█████████████████████████████████████████████| Time: 0:00:49
┌ Warning: could not find 'filename' in algo.opts - not saving anything
└ @ SMM ~/.julia/dev/SMM/src/mopt/AlgoAbstract.jl:67
[ Info: Done with estimation after 0.8 minutes
summary(MA) = 3×5 DataFrame
Row │ id acc_rate perc_exchanged exchanged_most_with best_val
│ Int64 Float64 Float64 Int64 Float64
─────┼───────────────────────────────────────────────────────────────────
1 │ 1 0.117347 2.0 2 0.00246371
2 │ 2 0.0899471 5.5 3 0.103399
3 │ 3 0.161458 4.0 2 0.139263
(
BGP Algorithm with 3 BGPChains
============================
Algorithm
---------
Current iteration: 200
Number of params to estimate: 2
Number of moments to match: 2
, Plot{Plots.GRBackend() n=2}, Plot{Plots.GRBackend() n=3})
Contributing
We encourage user contributions. Please submit a pull request for any improvements you would like to suggest, or a new algorithm you implemented.
New algorithms:
- You can model your algo on the basis of
src/AlgoBGP.jl
- - you need to implement the function
computeNextIteration!( algo )
for youralgo
History
This package grew out of the R package mopt
.
Thanks to all Contributors!
最近版本更新:(数据更新于 1970-01-01 00:00:00)
主题(topics):
estimation, julia, mcmc
floswald/SMM.jl同语言 Julia最近更新仓库
2024-09-13 13:29:38 jump-dev/JuMP.jl
2024-02-17 06:31:27 JuliaPackaging/BinaryBuilder.jl
2023-09-14 22:59:09 JuliaStats/GLM.jl
2023-08-29 00:30:41 andreasKroepelin/polylux
2023-07-28 03:48:40 invenia/ExprTools.jl
1970-01-01 00:00:00 cafaxo/Llama2.jl