aipmodel 0.2.40__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.
- aipmodel/CephS3Manager.py +1380 -0
- aipmodel/__init__.py +11 -0
- aipmodel/model_registry.py +938 -0
- aipmodel/template.py +67 -0
- aipmodel/update_checker.py +17 -0
- aipmodel-0.2.40.dist-info/METADATA +26 -0
- aipmodel-0.2.40.dist-info/RECORD +9 -0
- aipmodel-0.2.40.dist-info/WHEEL +5 -0
- aipmodel-0.2.40.dist-info/top_level.txt +1 -0
aipmodel/__init__.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from .CephS3Manager import CephS3Manager
|
|
2
|
+
from .model_registry import MLOpsManager
|
|
3
|
+
# from .test import create_model, download_model, get_model, list_models
|
|
4
|
+
from .update_checker import check_latest_version
|
|
5
|
+
|
|
6
|
+
check_latest_version("aipmodel")
|
|
7
|
+
|
|
8
|
+
__all__ = ["MLOpsManager", "create_model", "download_model", "get_model", "list_models"]
|
|
9
|
+
|
|
10
|
+
__version__ = "0.2.40"
|
|
11
|
+
__description__ = "SDK for model registration, versioning, and storage"
|