File tree Expand file tree Collapse file tree 3 files changed +24
-4
lines changed Expand file tree Collapse file tree 3 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
- ## [ 0.12 .0] - 2024-07-05
5
+ ## [ 0.13 .0] - 2024-10-23
6
6
7
7
### Bug Fixes
8
8
9
9
- Expose adaptation settings (Adrian Seyboldt)
10
10
11
11
- Append missing values for non-diverging draws (Adrian Seyboldt)
12
12
13
+ - Fix bug where step size stats were not updated after tuning (Adrian Seyboldt)
14
+
13
15
14
16
### Features
15
17
@@ -21,6 +23,14 @@ All notable changes to this project will be documented in this file.
21
23
22
24
- Add low-rank modified mass matrix adaptation (Adrian Seyboldt)
23
25
26
+ - Make cpu_math parallelization configurable (Adrian Seyboldt)
27
+
28
+ - Add transforming adaptation (Adrian Seyboldt)
29
+
30
+ - Improve error info for BadInitGrad (Adrian Seyboldt)
31
+
32
+ - Do not report invalid gradients for transform adapt (Adrian Seyboldt)
33
+
24
34
25
35
### Miscellaneous Tasks
26
36
@@ -30,11 +40,19 @@ All notable changes to this project will be documented in this file.
30
40
31
41
- Update changelog (Adrian Seyboldt)
32
42
43
+ - Prepare release (Adrian Seyboldt)
44
+
45
+ - Prepare release (Adrian Seyboldt)
46
+
47
+ - Update dependencies (Adrian Seyboldt)
48
+
33
49
34
50
### Refactor
35
51
36
52
- Switch to arrow-rs (Adrian Seyboldt)
37
53
54
+ - Refactor mass matrix adaptation traits (Adrian Seyboldt)
55
+
38
56
39
57
### Styling
40
58
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nuts-rs"
3
- version = " 0.12.1 "
3
+ version = " 0.13.0 "
4
4
authors = [
5
- " Adrian Seyboldt <[email protected] >" ,
6
- " PyMC Developers <[email protected] >" ,
5
+ " Adrian Seyboldt <[email protected] >" ,
6
+ " PyMC Developers <[email protected] >" ,
7
7
]
8
8
edition = " 2021"
9
9
license = " MIT"
Original file line number Diff line number Diff line change 30
30
//!
31
31
//! impl CpuLogpFunc for PosteriorDensity {
32
32
//! type LogpError = PosteriorLogpError;
33
+ //!
34
+ //! // Only used for transforming adaptation.
33
35
//! type TransformParams = ();
34
36
//!
35
37
//! // We define a 10 dimensional normal distribution
You can’t perform that action at this time.
0 commit comments