You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Remove selector stuff from varinfo tests
* Implement link and invlink for varnames rather than samplers
* Replace set_retained_vns_del_by_spl! with set_retained_vns_del!
* Make linking tests more extensive
* Remove sampler indexing from link methods (but not invlink)
* Remove indexing by samplers from invlink
* Work towards removing sampler indexing with StaticTransformation
* Fix invlink/link for TypedVarInfo and StaticTransformation
* Fix a test in models.jl
* Move some functions to utils.jl, add tests and docstrings
* Fix a docstring typo
* Various simplification to link/invlink
* Improve a docstring
* Style improvements
* Fix broken link/invlink dispatch cascade for VectorVarInfo
* Fix some more broken dispatch cascades
* Apply suggestions from code review
Co-authored-by: Xianda Sun <[email protected]>
* Remove comments that messed with docstrings
* Apply suggestions from code review
Co-authored-by: Penelope Yong <[email protected]>
* Fix issues surfaced in code review
* Simplify link/invlink arguments
* Fix a bug in unflatten VarNamedVector
* Rename VarNameCollection -> VarNameTuple
* Remove test of a removed varname_namedtuple method
* Apply suggestions from code review
Co-authored-by: Penelope Yong <[email protected]>
* Respond to review feedback
* Remove _default_sampler and a dead argument of maybe_invlink_before_eval
* Fix a typo in a comment
* Add HISTORY entry, fix one set_retained_vns_del! method
* Remove some VarInfo getindex with samplers stuff
* Remove some index setting with samplers
* Remove more sampler indexing
* Remove unflatten with samplers
* Clean up some setindex stuff
* Remove a bunch of varinfo.jl internal functions that used samplers/space, update HISTORY.md
* Fix HISTORY.md
* Miscalleanous small fixes
* Fix a bug in VarInfo constructor
* Fix getparams(::LogDensityFunction)
* Apply suggestions from code review
Co-authored-by: Penelope Yong <[email protected]>
---------
Co-authored-by: Xianda Sun <[email protected]>
Co-authored-by: Penelope Yong <[email protected]>
Copy file name to clipboardExpand all lines: HISTORY.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,11 @@ This release removes the feature of `VarInfo` where it kept track of which varia
10
10
11
11
-`link` and `invlink`, and their `!!` versions, no longer accept a sampler as an argument to specify which variables to (inv)link. The `link(varinfo, model)` methods remain in place, and as a new addition one can give a `Tuple` of `VarName`s to (inv)link only select variables, as in `link(varinfo, varname_tuple, model)`.
12
12
-`set_retained_vns_del_by_spl!` has been replaced by `set_retained_vns_del!` which applies to all variables.
13
+
-`getindex`, `setindex!`, and `setindex!!` no longer accept samplers as arguments
14
+
-`unflatten` no longer accepts a sampler as an argument
15
+
-`eltype(::VarInfo)` no longer accepts a sampler as an argument
16
+
-`keys(::VarInfo)` no longer accepts a sampler as an argument
17
+
-`VarInfo(::VarInfo, ::Sampler, ::AbstactVector)` no longer accepts the sampler argument.
0 commit comments