HomOpt 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.
HomOpt/HomM.py CHANGED
@@ -4,7 +4,7 @@ from torch.optim import Optimizer
4
4
  class HomM(Optimizer):
5
5
  def __init__(self, params, lr=0.1, a=-0.5, k1=-1.0, k2=-1.0, eps=0.2):
6
6
  """
7
- Finite-Time Momentum Optimizer
7
+ Homogeneous Momentum Optimizer
8
8
 
9
9
  Args:
10
10
  params (iterable): model parameters
HomOpt/__init__.py CHANGED
@@ -1,3 +1 @@
1
1
  from .HomM import HomM
2
-
3
- __all__ = ['HomM']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: HomOpt
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A collection of homogeneous optimizers for PyTorch
5
5
  Home-page: https://github.com/Yu-Zhou-1/HomOpt
6
6
  Author: Yu Zhou
@@ -19,6 +19,7 @@ Requires-Dist: torch>=1.6.0
19
19
  Dynamic: author
20
20
  Dynamic: author-email
21
21
  Dynamic: classifier
22
+ Dynamic: description
22
23
  Dynamic: description-content-type
23
24
  Dynamic: home-page
24
25
  Dynamic: keywords
@@ -27,3 +28,22 @@ Dynamic: license-file
27
28
  Dynamic: requires-dist
28
29
  Dynamic: requires-python
29
30
  Dynamic: summary
31
+
32
+ # HomOpt
33
+
34
+ HomOpt is a collection of homogeneous optimizers for PyTorch, designed to improve the performance of deep learning models. The optimizers are based on homogeneous dynamical systems and aim to provide more stable and efficient training.
35
+
36
+ ## Features
37
+
38
+ - A set of homogeneous optimizers for PyTorch, including the `HomM` optimizer.
39
+ - Optimizers designed to improve the training stability and convergence rates for deep learning tasks.
40
+ - Easy-to-use and integrate into your PyTorch training workflows.
41
+
42
+ ## Installation
43
+
44
+ You can install `HomOpt` using pip. First, ensure that you have Python 3.6 or later and PyTorch 1.6.0 or later installed.
45
+
46
+ To install directly from PyPI:
47
+
48
+ ```bash
49
+ pip install HomOpt
@@ -0,0 +1,7 @@
1
+ HomOpt/HomM.py,sha256=q1F88jWV7hO_K9cC2AwIvAerceIFn8pm-IAn2QWS9dg,2091
2
+ HomOpt/__init__.py,sha256=KEWIOUKyT9nJBT-qNRB3D6uTsOLG_VZbjjTeCVElCrI,24
3
+ homopt-0.1.1.dist-info/licenses/LICENSE,sha256=mvzbwOF8As7zDTL8keBQCUESdDkBWbHmlGSdzTfKZPo,1085
4
+ homopt-0.1.1.dist-info/METADATA,sha256=p9llWnYNaqjMZf1OuzMpn8N5JIiIEgCc49gNJP28ev4,1651
5
+ homopt-0.1.1.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
6
+ homopt-0.1.1.dist-info/top_level.txt,sha256=dYoHV1R7uO3IfnH3YeeX9RH7Ttm4HVUeWMWsoXgBXd8,7
7
+ homopt-0.1.1.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- HomOpt/HomM.py,sha256=a00B_j8SzjfwL9VnRPJ8J4ieWkbD3SaA6_f_7cIalBY,2091
2
- HomOpt/__init__.py,sha256=q-i8ByTCN5v2laTuUoM-VjU1v7zCdcVxvZug1cVeYfk,46
3
- homopt-0.1.0.dist-info/licenses/LICENSE,sha256=mvzbwOF8As7zDTL8keBQCUESdDkBWbHmlGSdzTfKZPo,1085
4
- homopt-0.1.0.dist-info/METADATA,sha256=ylRmdySZ7lMioZQyZuw2BPe4i8b_MaXXZOGzWDv7mxE,901
5
- homopt-0.1.0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
6
- homopt-0.1.0.dist-info/top_level.txt,sha256=dYoHV1R7uO3IfnH3YeeX9RH7Ttm4HVUeWMWsoXgBXd8,7
7
- homopt-0.1.0.dist-info/RECORD,,
File without changes