datamint 1.6.2__tar.gz → 1.6.3__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.
Potentially problematic release.
This version of datamint might be problematic. Click here for more details.
- {datamint-1.6.2 → datamint-1.6.3}/PKG-INFO +1 -1
- {datamint-1.6.2 → datamint-1.6.3}/datamint/client_cmd_tools/datamint_upload.py +1 -0
- {datamint-1.6.2 → datamint-1.6.3}/pyproject.toml +1 -1
- {datamint-1.6.2 → datamint-1.6.3}/README.md +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/__init__.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/apihandler/annotation_api_handler.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/apihandler/api_handler.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/apihandler/base_api_handler.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/apihandler/dto/annotation_dto.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/apihandler/exp_api_handler.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/apihandler/root_api_handler.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/client_cmd_tools/__init__.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/client_cmd_tools/datamint_config.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/configs.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/dataset/__init__.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/dataset/base_dataset.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/dataset/dataset.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/examples/__init__.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/examples/example_projects.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/experiment/__init__.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/experiment/_patcher.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/experiment/experiment.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/logging.yaml +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/utils/logging_utils.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/utils/torchmetrics.py +0 -0
- {datamint-1.6.2 → datamint-1.6.3}/datamint/utils/visualization.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: datamint
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.3
|
|
4
4
|
Summary: A library for interacting with the Datamint API, designed for efficient data management, processing and Deep Learning workflows.
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -464,6 +464,7 @@ def _parse_args() -> tuple[Any, list[str], Optional[list[dict]], Optional[list[s
|
|
|
464
464
|
if args.verbose:
|
|
465
465
|
# Get the console handler and set to debug
|
|
466
466
|
logging.getLogger().handlers[0].setLevel(logging.DEBUG)
|
|
467
|
+
logging.getLogger('datamint').handlers[0].setLevel(logging.DEBUG)
|
|
467
468
|
_LOGGER.setLevel(logging.DEBUG)
|
|
468
469
|
_USER_LOGGER.setLevel(logging.DEBUG)
|
|
469
470
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "datamint"
|
|
3
3
|
description = "A library for interacting with the Datamint API, designed for efficient data management, processing and Deep Learning workflows."
|
|
4
|
-
version = "1.6.
|
|
4
|
+
version = "1.6.3"
|
|
5
5
|
dynamic = ["dependencies"]
|
|
6
6
|
requires-python = ">=3.10"
|
|
7
7
|
readme = "README.md"
|
|
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
|
|
File without changes
|