hyper-models 0.3.4__tar.gz → 0.3.5__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.
- {hyper_models-0.3.4 → hyper_models-0.3.5}/PKG-INFO +2 -1
- {hyper_models-0.3.4 → hyper_models-0.3.5}/pyproject.toml +2 -1
- {hyper_models-0.3.4 → hyper_models-0.3.5}/.gitignore +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/LICENSE +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/README.md +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/__init__.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/models/__init__.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/models/encoders.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/models/experimental.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/models/himo.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/models/hyper3_clip.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/models/lorentz.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/models/losses.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/models/objectives.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/models/tren.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/training/__init__.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper3_clip/training/distributed.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper_models/__init__.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper_models/loader.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper_models/loaders.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper_models/models.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper_models/preprocessing.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper_models/registry.py +0 -0
- {hyper_models-0.3.4 → hyper_models-0.3.5}/src/hyper_models/torch_models.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: hyper-models
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.5
|
|
4
4
|
Summary: A model zoo for non-Euclidean embedding models (hyperbolic, spherical, product manifolds)
|
|
5
5
|
Project-URL: Homepage, https://github.com/Hyper3Labs/hyper-models
|
|
6
6
|
Project-URL: Repository, https://github.com/Hyper3Labs/hyper-models
|
|
@@ -30,6 +30,7 @@ Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
|
30
30
|
Requires-Dist: ruff>=0.1; extra == 'dev'
|
|
31
31
|
Requires-Dist: tomli>=2.0; (python_version < '3.11') and extra == 'dev'
|
|
32
32
|
Provides-Extra: ml
|
|
33
|
+
Requires-Dist: omegaconf>=2.3.0; extra == 'ml'
|
|
33
34
|
Requires-Dist: protobuf>=4.25.0; extra == 'ml'
|
|
34
35
|
Requires-Dist: pyyaml>=6.0.0; extra == 'ml'
|
|
35
36
|
Requires-Dist: safetensors>=0.4.0; extra == 'ml'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "hyper-models"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.5"
|
|
4
4
|
description = "A model zoo for non-Euclidean embedding models (hyperbolic, spherical, product manifolds)"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "MIT" }
|
|
@@ -44,6 +44,7 @@ ml = [
|
|
|
44
44
|
"pyyaml>=6.0.0",
|
|
45
45
|
"sentencepiece>=0.2.0",
|
|
46
46
|
"protobuf>=4.25.0",
|
|
47
|
+
"omegaconf>=2.3.0",
|
|
47
48
|
]
|
|
48
49
|
|
|
49
50
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|