Skip to content

Commit

Permalink
fix/fsrs4.5-parameter-weights (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdavham authored Jul 9, 2024
1 parent 7f5a5d3 commit f443b6e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "fsrs"
version = "2.2.0"
version = "2.2.1"
description = "Free Spaced Repetition Scheduler"
readme = "README.md"
authors = [{ name = "Jarrett Ye", email = "[email protected]" }]
Expand Down
2 changes: 1 addition & 1 deletion src/fsrs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.2.0"
__version__ = "2.2.1"

from .fsrs import FSRS, Card

Expand Down
34 changes: 17 additions & 17 deletions src/fsrs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,21 +250,21 @@ def __init__(self) -> None:
self.request_retention = 0.9
self.maximum_interval = 36500
self.w = (
0.4,
0.6,
2.4,
5.8,
4.93,
0.94,
0.86,
0.01,
1.49,
0.14,
0.94,
2.18,
0.05,
0.34,
1.26,
0.29,
2.61,
0.4872,
1.4003,
3.7145,
13.8206,
5.1618,
1.2298,
0.8975,
0.031,
1.6474,
0.1367,
1.0461,
2.1072,
0.0793,
0.3246,
1.587,
0.2272,
2.8755,
)

0 comments on commit f443b6e

Please sign in to comment.