hafnia 0.5.3__tar.gz → 0.5.4__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.
- {hafnia-0.5.3 → hafnia-0.5.4}/PKG-INFO +1 -1
- {hafnia-0.5.3 → hafnia-0.5.4}/pyproject.toml +1 -1
- {hafnia-0.5.3 → hafnia-0.5.4}/uv.lock +2 -2
- {hafnia-0.5.3 → hafnia-0.5.4}/.devcontainer/devcontainer.json +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.devcontainer/hooks/post_create +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.github/dependabot.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.github/workflows/Dockerfile +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.github/workflows/build.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.github/workflows/check_release.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.github/workflows/ci_cd.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.github/workflows/lint.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.github/workflows/publish_docker.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.github/workflows/publish_pypi.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.github/workflows/tests.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.gitignore +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.pre-commit-config.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.python-version +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.trivyignore +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.vscode/extensions.json +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.vscode/launch.json +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/.vscode/settings.json +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/LICENSE +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/README.md +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/docs/cli.md +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/docs/release.md +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/examples/example_dataset_recipe.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/examples/example_hafnia_dataset.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/examples/example_logger.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/examples/example_torchvision_dataloader.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/__init__.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/colors.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/dataset_details_uploader.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/dataset_helpers.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/dataset_names.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/dataset_recipe/dataset_recipe.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/dataset_recipe/recipe_transforms.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/dataset_recipe/recipe_types.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/format_conversions/format_coco.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/format_conversions/format_helpers.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/format_conversions/format_image_classification_folder.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/format_conversions/format_yolo.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/format_conversions/torchvision_datasets.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/hafnia_dataset.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/hafnia_dataset_types.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/image_visualizations.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/license_types.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/operations/dataset_s3_storage.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/operations/dataset_stats.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/operations/dataset_transformations.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/operations/table_transformations.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/primitives/__init__.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/primitives/bbox.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/primitives/bitmask.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/primitives/classification.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/primitives/point.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/primitives/polygon.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/primitives/primitive.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/primitives/segmentation.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/primitives/utils.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/dataset/torch_helpers.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/experiment/__init__.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/experiment/command_builder.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/experiment/hafnia_logger.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/http.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/log.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/platform/__init__.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/platform/builder.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/platform/dataset_recipe.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/platform/datasets.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/platform/download.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/platform/experiment.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/platform/s5cmd_utils.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/platform/trainer_package.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia/utils.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/__init__.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/__main__.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/config.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/consts.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/dataset_cmds.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/dataset_recipe_cmds.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/experiment_cmds.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/keychain.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/profile_cmds.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/runc_cmds.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/src/hafnia_cli/trainer_package_cmds.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/__init__.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/conftest.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/train/000000000632.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/train/000000000724.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/train/_annotations.coco.json +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/valid/000000000139.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/valid/000000000285.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/valid/_annotations.coco.json +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/obj.names +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/train/data/000000000139.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/train/data/000000000139.txt +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/train/data/000000000285.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/train/data/000000000285.txt +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/train/images.txt +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/validation/data/000000000632.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/validation/data/000000000632.txt +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/validation/images.txt +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_image_metadata_schema.yaml +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_dataset_transformations/test_video_storage_format_read_image.png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_format_coco/test_convert_segmentation_to_rle_list[polygon].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_format_coco/test_convert_segmentation_to_rle_list[rle_as_ints].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_format_coco/test_convert_segmentation_to_rle_list[rle_compressed_bytes].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_format_coco/test_convert_segmentation_to_rle_list[rle_compressed_str].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_format_coco/test_from_coco_format_visualized.png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_format_coco/test_to_coco_format_visualized.png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_format_yolo/test_format_yolo_import_export_tiny_dataset.png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_format_yolo/test_import_yolo_format_visualized.png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_check_dataset[caltech-101].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_check_dataset[caltech-256].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_check_dataset[cifar100].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_check_dataset[cifar10].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_check_dataset[coco-2017].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_check_dataset[midwest-vehicle-detection].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_check_dataset[mnist].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_check_dataset[tiny-dataset].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_dataset_draw_image_and_target[caltech-101].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_dataset_draw_image_and_target[caltech-256].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_dataset_draw_image_and_target[cifar100].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_dataset_draw_image_and_target[cifar10].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_dataset_draw_image_and_target[coco-2017].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_dataset_draw_image_and_target[midwest-vehicle-detection].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_dataset_draw_image_and_target[mnist].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_dataset_draw_image_and_target[tiny-dataset].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_visualizations/test_blur_anonymization[micro-coco-2017].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_visualizations/test_blur_anonymization[micro-tiny-dataset].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_visualizations/test_draw_annotations[micro-coco-2017].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_visualizations/test_draw_annotations[micro-tiny-dataset].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_visualizations/test_mask_region[micro-coco-2017].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_visualizations/test_mask_region[micro-tiny-dataset].png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_visualizations/test_polygon_to_bitmask_conversion.png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-coco-2017/annotations.jsonl +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-coco-2017/annotations.parquet +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-coco-2017/data/253/253925d334c002ce6662d8133535dd4c.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-coco-2017/data/b1a/b1a09f4d922f8f6904bab0c1caf172ab.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-coco-2017/data/f67/f675c8a1e862b5e00203ab888ac7fff4.jpg +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-coco-2017/dataset_info.json +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-tiny-dataset/annotations.jsonl +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-tiny-dataset/annotations.parquet +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-tiny-dataset/data/25c/25c3a206e7b60ab50245ee3d52d97f11.png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-tiny-dataset/data/962/962fd865fdd45f169d5ca8c8f284d68d.png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-tiny-dataset/data/ec6/ec60f2f4fb854b59c97e16b45c713de0.png +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-tiny-dataset/dataset_info.json +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/helper_testing.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/helper_testing_datasets.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/integration/test_bring_your_own_data.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/integration/test_check_example_scripts.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/integration/test_cli_integration.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/integration/test_dataset_merges.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/integration/test_dataset_recipes_with_platform.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/integration/test_dataset_versioning.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/integration/test_samples.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/integration/test_torchvision_datasets.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/dataset_recipe/test_dataset_recipes.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/dataset_recipe/test_recipe_transformations.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/format_conversions/test_format_coco.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/format_conversions/test_format_image_classification_folder.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/format_conversions/test_format_yolo.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/operations/test_dataset_stats.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/operations/test_dataset_transformations.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/operations/test_table_transformations.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/test_colors.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/test_dataset_details_uploader.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/test_dataset_helpers.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/test_dataset_names.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/test_hafnia_dataset.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/test_hafnia_dataset_types.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/test_shape_primitives.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/test_builder.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/test_cli.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/test_command_builder.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/test_hafnia_logger.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/test_utils.py +0 -0
- {hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/test_visualizations.py +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
version = 1
|
|
2
|
-
revision =
|
|
2
|
+
revision = 3
|
|
3
3
|
requires-python = ">=3.10"
|
|
4
4
|
resolution-markers = [
|
|
5
5
|
"python_full_version >= '3.12'",
|
|
@@ -1152,7 +1152,7 @@ wheels = [
|
|
|
1152
1152
|
|
|
1153
1153
|
[[package]]
|
|
1154
1154
|
name = "hafnia"
|
|
1155
|
-
version = "0.5.
|
|
1155
|
+
version = "0.5.4"
|
|
1156
1156
|
source = { editable = "." }
|
|
1157
1157
|
dependencies = [
|
|
1158
1158
|
{ name = "boto3" },
|
|
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
|
|
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
|
|
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
|
|
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
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/train/000000000632.jpg
RENAMED
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/train/000000000724.jpg
RENAMED
|
File without changes
|
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/valid/000000000139.jpg
RENAMED
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_coco_roboflow/valid/000000000285.jpg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/train/data/000000000139.jpg
RENAMED
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/train/data/000000000139.txt
RENAMED
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/train/data/000000000285.jpg
RENAMED
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/dataset_formats/format_yolo/train/data/000000000285.txt
RENAMED
|
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
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/expected_images/test_samples/test_check_dataset[mnist].png
RENAMED
|
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
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-coco-2017/annotations.jsonl
RENAMED
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-coco-2017/annotations.parquet
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-coco-2017/dataset_info.json
RENAMED
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-tiny-dataset/annotations.jsonl
RENAMED
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-tiny-dataset/annotations.parquet
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/data/micro_test_datasets/micro-tiny-dataset/dataset_info.json
RENAMED
|
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
|
{hafnia-0.5.3 → hafnia-0.5.4}/tests/unit/dataset/dataset_recipe/test_recipe_transformations.py
RENAMED
|
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
|