File tree Expand file tree Collapse file tree 6 files changed +9
-15
lines changed
Expand file tree Collapse file tree 6 files changed +9
-15
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
1717DataStructures = " 864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
1818DifferentiationInterface = " a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63"
1919Distributions = " 31c24e10-a181-5473-b8eb-7969acd0382f"
20- DistributionsAD = " ced4e74d-a319-5a8a-b0ac-84af2272839c"
2120DocStringExtensions = " ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
2221DynamicPPL = " 366bfd00-2699-11ea-058f-f148b4cae6d8"
2322EllipticalSliceSampling = " cad2338a-1db2-11e9-3401-43bc07c9ede2"
@@ -60,7 +59,6 @@ Compat = "4.15.0"
6059DataStructures = " 0.18, 0.19"
6160DifferentiationInterface = " 0.7"
6261Distributions = " 0.25.77"
63- DistributionsAD = " 0.6"
6462DocStringExtensions = " 0.8, 0.9"
6563DynamicHMC = " 3.4"
6664DynamicPPL = " 0.40.6"
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ links = InterLinks(
1111 " AbstractMCMC" => " https://turinglang.org/AbstractMCMC.jl/stable/" ,
1212 " ADTypes" => " https://sciml.github.io/ADTypes.jl/stable/" ,
1313 " AdvancedVI" => " https://turinglang.org/AdvancedVI.jl/stable/" ,
14- " DistributionsAD" => " https://turinglang.org/DistributionsAD.jl/stable/" ,
1514 " OrderedCollections" => " https://juliacollections.github.io/OrderedCollections.jl/stable/" ,
1615 " Distributions" => " https://juliastats.org/Distributions.jl/stable/" ,
1716)
Original file line number Diff line number Diff line change @@ -157,12 +157,12 @@ LogPoisson
157157
158158### Tools to work with distributions
159159
160- | Exported symbol | Documentation | Description |
161- | :--------------- | :-------------------------------------- | :-------------------------------------------------------------- |
162- | ` I ` | [ ` LinearAlgebra.I ` ] ( @extref ) | Identity matrix |
163- | ` filldist ` | [ ` DistributionsAD .filldist` ] ( @extref ) | Create a product distribution from a distribution and integers |
164- | ` arraydist ` | [ ` DistributionsAD .arraydist` ] ( @extref ) | Create a product distribution from an array of distributions |
165- | ` NamedDist ` | [ ` DynamicPPL.NamedDist ` ] ( @extref ) | A distribution that carries the name of the variable |
160+ | Exported symbol | Documentation | Description |
161+ | :--------------- | :--------------------------------- | :-------------------------------------------------------------- |
162+ | ` I ` | [ ` LinearAlgebra.I ` ] ( @extref ) | Identity matrix |
163+ | ` filldist ` | [ ` DynamicPPL .filldist` ] ( @extref ) | Create a product distribution from a distribution and integers |
164+ | ` arraydist ` | [ ` DynamicPPL .arraydist` ] ( @extref ) | Create a product distribution from an array of distributions |
165+ | ` NamedDist ` | [ ` DynamicPPL.NamedDist ` ] ( @extref ) | A distribution that carries the name of the variable |
166166
167167### Point estimates
168168
Original file line number Diff line number Diff line change 11module Turing
22
33using Reexport, ForwardDiff
4- using DistributionsAD, Bijectors, StatsFuns, SpecialFunctions
4+ using Bijectors, StatsFuns, SpecialFunctions
55using Statistics, LinearAlgebra
66using Libtask
77@reexport using Distributions, MCMCChains
@@ -144,8 +144,8 @@ export
144144 LogPoisson,
145145 # Tools to work with Distributions
146146 I, # LinearAlgebra
147- filldist, # DistributionsAD
148- arraydist, # DistributionsAD
147+ filldist, # DynamicPPL
148+ arraydist, # DynamicPPL
149149 NamedDist, # DynamicPPL
150150 # Predictions - DynamicPPL
151151 predict,
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ using DynamicPPL:
1616 Model,
1717 DefaultContext
1818using Distributions, Libtask, Bijectors
19- using DistributionsAD: VectorOfMultivariate
2019using LinearAlgebra
2120using .. Turing: PROGRESS, Turing
2221using StatsFuns: logsumexp
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ Clustering = "aaaa29a8-35af-508c-8bc3-b662a17a0fe5"
1212Combinatorics = " 861a8166-3701-5b0c-9a16-15d98fcdc6aa"
1313DifferentiationInterface = " a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63"
1414Distributions = " 31c24e10-a181-5473-b8eb-7969acd0382f"
15- DistributionsAD = " ced4e74d-a319-5a8a-b0ac-84af2272839c"
1615DynamicHMC = " bbc10e6e-7c05-544b-b16e-64fede858acb"
1716DynamicPPL = " 366bfd00-2699-11ea-058f-f148b4cae6d8"
1817FiniteDifferences = " 26cc04aa-876d-5657-8c51-4c34ba976000"
@@ -54,7 +53,6 @@ Clustering = "0.14, 0.15"
5453Combinatorics = " 1"
5554DifferentiationInterface = " 0.7"
5655Distributions = " 0.25"
57- DistributionsAD = " 0.6.3"
5856DynamicHMC = " 2.1.6, 3.0"
5957DynamicPPL = " 0.40.6"
6058FiniteDifferences = " 0.10.8, 0.11, 0.12"
You can’t perform that action at this time.
0 commit comments