rlcmab-sampler 0.1.0__tar.gz → 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rlcmab_sampler-0.1.0 → rlcmab_sampler-1.0.1}/PKG-INFO +6 -11
- {rlcmab_sampler-0.1.0 → rlcmab_sampler-1.0.1}/README.md +2 -9
- {rlcmab_sampler-0.1.0 → rlcmab_sampler-1.0.1}/pyproject.toml +6 -3
- {rlcmab_sampler-0.1.0 → rlcmab_sampler-1.0.1}/src/rlcmab_sampler/__init__.py +0 -0
- {rlcmab_sampler-0.1.0 → rlcmab_sampler-1.0.1}/src/rlcmab_sampler/py.typed +0 -0
|
@@ -1,27 +1,22 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rlcmab-sampler
|
|
3
|
-
Version: 0.1
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Gaussian reward sampler for Contextual Bandit news recommendation system
|
|
5
5
|
Author: Saswata Sarkar
|
|
6
6
|
Author-email: Saswata Sarkar <sarkarsaswata01@gmail.com>
|
|
7
|
+
Requires-Dist: numpy>=2.4.2
|
|
8
|
+
Requires-Dist: scipy>=1.17.0
|
|
7
9
|
Requires-Python: >=3.12
|
|
8
10
|
Description-Content-Type: text/markdown
|
|
9
11
|
|
|
10
|
-
# rlcmab-
|
|
12
|
+
# rlcmab-sampler
|
|
11
13
|
|
|
12
14
|
A reward sampler for Contextual Bandit news recommendation systems.
|
|
13
15
|
|
|
14
16
|
## Installation
|
|
15
17
|
|
|
16
18
|
```bash
|
|
17
|
-
pip install rlcmab-
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
Or install from source:
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
cd sampler
|
|
24
|
-
pip install .
|
|
19
|
+
pip install rlcmab-sampler
|
|
25
20
|
```
|
|
26
21
|
|
|
27
22
|
## Quick Start
|
|
@@ -1,18 +1,11 @@
|
|
|
1
|
-
# rlcmab-
|
|
1
|
+
# rlcmab-sampler
|
|
2
2
|
|
|
3
3
|
A reward sampler for Contextual Bandit news recommendation systems.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
pip install rlcmab-
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
Or install from source:
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
cd sampler
|
|
15
|
-
pip install .
|
|
8
|
+
pip install rlcmab-sampler
|
|
16
9
|
```
|
|
17
10
|
|
|
18
11
|
## Quick Start
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "rlcmab-sampler"
|
|
3
|
-
version = "0.1
|
|
4
|
-
description = "
|
|
3
|
+
version = "1.0.1"
|
|
4
|
+
description = "Gaussian reward sampler for Contextual Bandit news recommendation system"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
7
7
|
{ name = "Saswata Sarkar", email = "sarkarsaswata01@gmail.com" }
|
|
8
8
|
]
|
|
9
9
|
requires-python = ">=3.12"
|
|
10
|
-
dependencies = [
|
|
10
|
+
dependencies = [
|
|
11
|
+
"numpy>=2.4.2",
|
|
12
|
+
"scipy>=1.17.0",
|
|
13
|
+
]
|
|
11
14
|
|
|
12
15
|
[build-system]
|
|
13
16
|
requires = ["uv_build>=0.9.11,<0.10.0"]
|
|
File without changes
|
|
File without changes
|