hur 1.0.0__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.
- hur-1.0.0/LICENSE.txt +3 -0
- hur-1.0.0/PKG-INFO +22 -0
- hur-1.0.0/hur/__init__.py +17 -0
- hur-1.0.0/hur/hur.py +2068 -0
- hur-1.0.0/hur.egg-info/PKG-INFO +22 -0
- hur-1.0.0/hur.egg-info/SOURCES.txt +10 -0
- hur-1.0.0/hur.egg-info/dependency_links.txt +1 -0
- hur-1.0.0/hur.egg-info/requires.txt +11 -0
- hur-1.0.0/hur.egg-info/top_level.txt +1 -0
- hur-1.0.0/setup.cfg +7 -0
- hur-1.0.0/setup.py +40 -0
hur-1.0.0/LICENSE.txt
ADDED
hur-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: hur
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Home-page: https://github.com/sapiens-technology/Hur-Model
|
|
5
|
+
Author: SAPIENS TECHNOLOGY
|
|
6
|
+
License: Proprietary Software
|
|
7
|
+
License-File: LICENSE.txt
|
|
8
|
+
Requires-Dist: hurnet-torch==1.1.0
|
|
9
|
+
Requires-Dist: sapiens-tokenizer==1.1.5
|
|
10
|
+
Requires-Dist: sapiens-embedding==1.0.9
|
|
11
|
+
Requires-Dist: sapiens-attention==1.0.7
|
|
12
|
+
Requires-Dist: sapiens-infinite-context-window==1.0.5
|
|
13
|
+
Requires-Dist: sapiens-generalization==1.0.1
|
|
14
|
+
Requires-Dist: scn==1.0.9
|
|
15
|
+
Requires-Dist: torch==2.4.1
|
|
16
|
+
Requires-Dist: requests==2.31.0
|
|
17
|
+
Requires-Dist: ijson==3.3.0
|
|
18
|
+
Requires-Dist: tqdm==4.67.1
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: home-page
|
|
21
|
+
Dynamic: license
|
|
22
|
+
Dynamic: requires-dist
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""
|
|
2
|
+
This algorithm proposes a new paradigm in language model architecture, aiming to revolutionize natural language processing through direct weights adjustment and automatic parameter configuration.
|
|
3
|
+
The Hur-Model is a development module that implements this concept, enabling the training, retraining, tuning, and inference of language models in a groundbreaking way.
|
|
4
|
+
It reduces dependence on backpropagation through an initial weight adjustment using a HurNet network and accelerates model parameterization through optimization calculations and self-configuration.
|
|
5
|
+
This code was architected, developed, and programmed by Ben-Hur Varriano for Sapiens Technology®️.
|
|
6
|
+
Any use, modification, disclosure, or public commentary without prior authorization from Sapiens Technology®️ will be subject to legal action by our legal team.
|
|
7
|
+
"""
|
|
8
|
+
# --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
|
|
9
|
+
from .hur import *
|
|
10
|
+
"""
|
|
11
|
+
This algorithm proposes a new paradigm in language model architecture, aiming to revolutionize natural language processing through direct weights adjustment and automatic parameter configuration.
|
|
12
|
+
The Hur-Model is a development module that implements this concept, enabling the training, retraining, tuning, and inference of language models in a groundbreaking way.
|
|
13
|
+
It reduces dependence on backpropagation through an initial weight adjustment using a HurNet network and accelerates model parameterization through optimization calculations and self-configuration.
|
|
14
|
+
This code was architected, developed, and programmed by Ben-Hur Varriano for Sapiens Technology®️.
|
|
15
|
+
Any use, modification, disclosure, or public commentary without prior authorization from Sapiens Technology®️ will be subject to legal action by our legal team.
|
|
16
|
+
"""
|
|
17
|
+
# --------------------------> A SAPIENS TECHNOLOGY®️ PRODUCTION) <--------------------------
|