evolutionary-policy-optimization 0.0.16__tar.gz → 0.0.17__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.
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/PKG-INFO +13 -1
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/README.md +11 -0
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/evolutionary_policy_optimization/epo.py +2 -0
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/pyproject.toml +2 -1
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/.github/workflows/python-publish.yml +0 -0
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/.github/workflows/test.yml +0 -0
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/.gitignore +0 -0
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/LICENSE +0 -0
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/evolutionary_policy_optimization/__init__.py +0 -0
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/evolutionary_policy_optimization/experimental.py +0 -0
- {evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/tests/test_epo.py +0 -0
{evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: evolutionary-policy-optimization
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.17
|
4
4
|
Summary: EPO - Pytorch
|
5
5
|
Project-URL: Homepage, https://pypi.org/project/evolutionary-policy-optimization/
|
6
6
|
Project-URL: Repository, https://github.com/lucidrains/evolutionary-policy-optimization
|
@@ -37,6 +37,7 @@ Requires-Python: >=3.8
|
|
37
37
|
Requires-Dist: adam-atan2-pytorch
|
38
38
|
Requires-Dist: assoc-scan
|
39
39
|
Requires-Dist: einops>=0.8.0
|
40
|
+
Requires-Dist: hl-gauss-pytorch>=0.1.19
|
40
41
|
Requires-Dist: torch>=2.2
|
41
42
|
Requires-Dist: tqdm
|
42
43
|
Provides-Extra: examples
|
@@ -110,4 +111,15 @@ latent_pool.genetic_algorithm_step(fitness) # update latent genes with genetic a
|
|
110
111
|
}
|
111
112
|
```
|
112
113
|
|
114
|
+
```bibtex
|
115
|
+
@article{Farebrother2024StopRT,
|
116
|
+
title = {Stop Regressing: Training Value Functions via Classification for Scalable Deep RL},
|
117
|
+
author = {Jesse Farebrother and Jordi Orbay and Quan Ho Vuong and Adrien Ali Taiga and Yevgen Chebotar and Ted Xiao and Alex Irpan and Sergey Levine and Pablo Samuel Castro and Aleksandra Faust and Aviral Kumar and Rishabh Agarwal},
|
118
|
+
journal = {ArXiv},
|
119
|
+
year = {2024},
|
120
|
+
volume = {abs/2403.03950},
|
121
|
+
url = {https://api.semanticscholar.org/CorpusID:268253088}
|
122
|
+
}
|
123
|
+
```
|
124
|
+
|
113
125
|
*Evolution is cleverer than you are.* - Leslie Orgel
|
{evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/README.md
RENAMED
@@ -57,4 +57,15 @@ latent_pool.genetic_algorithm_step(fitness) # update latent genes with genetic a
|
|
57
57
|
}
|
58
58
|
```
|
59
59
|
|
60
|
+
```bibtex
|
61
|
+
@article{Farebrother2024StopRT,
|
62
|
+
title = {Stop Regressing: Training Value Functions via Classification for Scalable Deep RL},
|
63
|
+
author = {Jesse Farebrother and Jordi Orbay and Quan Ho Vuong and Adrien Ali Taiga and Yevgen Chebotar and Ted Xiao and Alex Irpan and Sergey Levine and Pablo Samuel Castro and Aleksandra Faust and Aviral Kumar and Rishabh Agarwal},
|
64
|
+
journal = {ArXiv},
|
65
|
+
year = {2024},
|
66
|
+
volume = {abs/2403.03950},
|
67
|
+
url = {https://api.semanticscholar.org/CorpusID:268253088}
|
68
|
+
}
|
69
|
+
```
|
70
|
+
|
60
71
|
*Evolution is cleverer than you are.* - Leslie Orgel
|
{evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/pyproject.toml
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "evolutionary-policy-optimization"
|
3
|
-
version = "0.0.
|
3
|
+
version = "0.0.17"
|
4
4
|
description = "EPO - Pytorch"
|
5
5
|
authors = [
|
6
6
|
{ name = "Phil Wang", email = "lucidrains@gmail.com" }
|
@@ -27,6 +27,7 @@ dependencies = [
|
|
27
27
|
"adam-atan2-pytorch",
|
28
28
|
'assoc-scan',
|
29
29
|
'einops>=0.8.0',
|
30
|
+
'hl-gauss-pytorch>=0.1.19',
|
30
31
|
'torch>=2.2',
|
31
32
|
'tqdm'
|
32
33
|
]
|
File without changes
|
File without changes
|
{evolutionary_policy_optimization-0.0.16 → evolutionary_policy_optimization-0.0.17}/.gitignore
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|