We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7095635 commit 294c0d2Copy full SHA for 294c0d2
3 files changed
changelog.md
@@ -1,12 +1,17 @@
1
# Changelog
2
3
+## [1.17.2][2024-10-20]
4
+
5
+### Added
6
7
+- Saving of initial random state
8
9
## [1.17.1][2024-07-24]
10
11
### Fixed
12
13
- Installation no attribute `'__LIGHTFM_SETUP__'` error
14
-
15
# Releases below were made in the original repo
16
17
## [1.17][2023-03-19]
lightfm/lightfm.py
@@ -231,6 +231,7 @@ def __init__(
231
self.item_alpha = item_alpha
232
self.user_alpha = user_alpha
233
234
+ self.initial_random_state = random_state # for reproducibility
235
if random_state is None:
236
self.random_state = np.random.RandomState()
237
elif isinstance(random_state, np.random.RandomState):
lightfm/version.py
@@ -1 +1 @@
-__version__ = "1.17.1"
+__version__ = "1.17.2"
0 commit comments