Skip to content

Commit b04f627

Browse files
committed
Rel 4.5.4
1 parent 2e928e9 commit b04f627

6 files changed

Lines changed: 9 additions & 11 deletions

File tree

Project.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ uuid = "2d09df54-9d0f-5258-8220-54c2a3d4fbee"
33
version = "4.5.3"
44

55
[deps]
6-
AxisKeys = "94b1ba4f-4ee9-5380-92f1-94cde586c3c5"
76
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
87
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
98
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
@@ -20,13 +19,11 @@ NamedTupleTools = "d9ec5142-1e00-5aa0-9d6a-321866360f50"
2019
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
2120
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
2221
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
23-
ParetoSmooth = "a68b5a21-f429-434e-8bfa-46b447300aac"
2422
ParetoSmoothedImportanceSampling = "98f080ec-61e2-11eb-1c7b-31ea1097256f"
2523
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
2624
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
2725
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
2826
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
29-
StanSample = "c1514b29-d3a0-5178-b312-660c88baa699"
3027
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
3128
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
3229
StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c"
@@ -36,7 +33,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3633
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
3734

3835
[compat]
39-
AxisKeys = "0.1, 0.2"
4036
CSV = "0.9, 0.10"
4137
DataFrames = "1"
4238
Distributions = "0.25"
@@ -51,7 +47,6 @@ NamedTupleTools = "0.13, 0.14"
5147
Optim = "1.5"
5248
OrderedCollections = "1.4"
5349
Parameters = "0.12"
54-
ParetoSmooth = "0.7"
5550
ParetoSmoothedImportanceSampling = "1"
5651
PrettyTables = "1.0, 2.0"
5752
Reexport = "1.2"
@@ -63,9 +58,11 @@ Tables = "1.5"
6358
julia = "1"
6459

6560
[extras]
61+
AxisKeys = "94b1ba4f-4ee9-5380-92f1-94cde586c3c5"
6662
CPUSummary = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9"
63+
ParetoSmooth = "a68b5a21-f429-434e-8bfa-46b447300aac"
6764
StanSample = "c1514b29-d3a0-5178-b312-660c88baa699"
6865
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6966

7067
[targets]
71-
test = ["StanSample", "Test"]
68+
test = ["StanSample", "AxisKeys", "ParetoSmooth", "Test"]

src/StatisticalRethinking.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ using NamedTupleTools
1212
using PrettyTables
1313
using Unicode
1414
using StructuralCausalModels
15-
using ParetoSmooth
15+
#using ParetoSmooth
1616
using ParetoSmoothedImportanceSampling
1717
using MonteCarloMeasurements
1818
using KernelDensity
@@ -23,15 +23,14 @@ using Dates
2323
import StatsBase: sample
2424
import DataFrames: DataFrame
2525
import MonteCarloMeasurements: Particles
26-
import ParetoSmooth: psis_loo, loo_compare
26+
#import ParetoSmooth: psis_loo, loo_compare
2727

2828
using DocStringExtensions: SIGNATURES, FIELDS, TYPEDEF
2929

3030
function __init__()
3131
@require Turing="fce5fe82-541a-59a6-adf8-730c64b5f9a0" include("require/turing/turing.jl")
3232
@require StanSample="c1514b29-d3a0-5178-b312-660c88baa699" include("require/stan/stan.jl")
3333
@require LogDensityProblems="6fdf6af0-433a-55f7-b3ed-c6c6e0b8df7c" include("require/dhmc/dhmc.jl")
34-
3534
#@require MCMCChains="c7f686f2-ff18-58e9-bc7b-31028e88f75d" include("require/mcmcchains/mcmcchains.jl")
3635
end
3736

src/require/stan/stan.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ using .StanSample
33
include("stan_precis.jl")
44
include("stan_compare.jl")
55
include("stan_psis.jl") # ParetoSmoothedImportanceSampling.jl based
6-
include("stan_axiskeys.jl") # ParetoSmoothedImportanceSampling.jl based
6+
#include("stan_axiskeys.jl") # ParetoSmoothedImportanceSampling.jl based

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ end
1818
if stan_exists()
1919
for t stan_tests
2020
@testset "$t" begin
21-
include("test_$t.jl")
21+
#include("test_$t.jl")
2222
end
2323
end
2424
end

test/test_wd-loo-compare-2.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using ParetoSmooth, AxisKeys
2+
import ParetoSmooth: psis_loo, loo_compare
23
using NamedTupleTools, Distributions
34
using StanSample
45
using StatisticalRethinking

test/test_wd-loo-compare.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using ParetoSmooth, AxisKeys
2+
import ParetoSmooth: psis_loo, loo_compare
23
using NamedTupleTools, Distributions
34
using StanSample
45
using StatisticalRethinking

0 commit comments

Comments
 (0)