mlarray 0.0.28__tar.gz → 0.0.30__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.
Files changed (36) hide show
  1. {mlarray-0.0.28 → mlarray-0.0.30}/PKG-INFO +1 -1
  2. {mlarray-0.0.28 → mlarray-0.0.30}/docs/api.md +4 -0
  3. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/PKG-INFO +1 -1
  4. {mlarray-0.0.28 → mlarray-0.0.30}/.github/workflows/workflow.yml +0 -0
  5. {mlarray-0.0.28 → mlarray-0.0.30}/.gitignore +0 -0
  6. {mlarray-0.0.28 → mlarray-0.0.30}/LICENSE +0 -0
  7. {mlarray-0.0.28 → mlarray-0.0.30}/MANIFEST.in +0 -0
  8. {mlarray-0.0.28 → mlarray-0.0.30}/README.md +0 -0
  9. {mlarray-0.0.28 → mlarray-0.0.30}/assets/banner.png +0 -0
  10. {mlarray-0.0.28 → mlarray-0.0.30}/assets/banner.png~ +0 -0
  11. {mlarray-0.0.28 → mlarray-0.0.30}/docs/cli.md +0 -0
  12. {mlarray-0.0.28 → mlarray-0.0.30}/docs/index.md +0 -0
  13. {mlarray-0.0.28 → mlarray-0.0.30}/docs/optimization.md +0 -0
  14. {mlarray-0.0.28 → mlarray-0.0.30}/docs/schema.md +17 -17
  15. {mlarray-0.0.28 → mlarray-0.0.30}/docs/usage.md +0 -0
  16. {mlarray-0.0.28 → mlarray-0.0.30}/docs/why.md +0 -0
  17. {mlarray-0.0.28 → mlarray-0.0.30}/examples/example_channel.py +0 -0
  18. {mlarray-0.0.28 → mlarray-0.0.30}/examples/example_metadata_only.py +0 -0
  19. {mlarray-0.0.28 → mlarray-0.0.30}/examples/example_open.py +0 -0
  20. {mlarray-0.0.28 → mlarray-0.0.30}/examples/example_save_load.py +0 -0
  21. {mlarray-0.0.28 → mlarray-0.0.30}/mkdocs.yml +0 -0
  22. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/__init__.py +0 -0
  23. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/cli.py +0 -0
  24. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/meta.py +0 -0
  25. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/mlarray.py +0 -0
  26. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/utils.py +0 -0
  27. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/SOURCES.txt +0 -0
  28. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/dependency_links.txt +0 -0
  29. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/entry_points.txt +0 -0
  30. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/requires.txt +0 -0
  31. {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/top_level.txt +0 -0
  32. {mlarray-0.0.28 → mlarray-0.0.30}/pyproject.toml +0 -0
  33. {mlarray-0.0.28 → mlarray-0.0.30}/setup.cfg +0 -0
  34. {mlarray-0.0.28 → mlarray-0.0.30}/tests/test_metadata.py +0 -0
  35. {mlarray-0.0.28 → mlarray-0.0.30}/tests/test_optimization.py +0 -0
  36. {mlarray-0.0.28 → mlarray-0.0.30}/tests/test_usage.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlarray
3
- Version: 0.0.28
3
+ Version: 0.0.30
4
4
  Summary: Array format specialized for Machine Learning with Blosc2 backend and standardized metadata.
5
5
  Author-email: Karol Gotkowski <karol.gotkowski@dkfz.de>
6
6
  License: MIT
@@ -6,6 +6,10 @@
6
6
 
7
7
  ## Metadata Module
8
8
 
9
+ ::: mlarray.meta.BaseMeta
10
+
11
+ ::: mlarray.meta.SingleKeyBaseMeta
12
+
9
13
  ::: mlarray.meta.Meta
10
14
 
11
15
  ::: mlarray.meta.MetaOriginal
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlarray
3
- Version: 0.0.28
3
+ Version: 0.0.30
4
4
  Summary: Array format specialized for Machine Learning with Blosc2 backend and standardized metadata.
5
5
  Author-email: Karol Gotkowski <karol.gotkowski@dkfz.de>
6
6
  License: MIT
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
@@ -58,13 +58,6 @@ This section stores the information needed to interpret the array in physical sp
58
58
 
59
59
  ---
60
60
 
61
- ### is_seg
62
-
63
- * **Description:** Whether the image is a segmentation mask.
64
- * **Dataclass:** None (boolean).
65
-
66
- ---
67
-
68
61
  ### stats
69
62
 
70
63
  * **Description:** Summary statistics for the image.
@@ -102,21 +95,13 @@ Bounding boxes are stored in a normalized, axis-aligned representation that work
102
95
 
103
96
  ---
104
97
 
105
- ### _has_array
98
+ ### is_seg
106
99
 
107
- * **Description:** Whether this metadata instance represents an on-disk array.
100
+ * **Description:** Whether the image is a segmentation mask.
108
101
  * **Dataclass:** None (boolean).
109
102
 
110
103
  ---
111
104
 
112
- ### _image_meta_format
113
-
114
- * **Description:** Source format identifier for the `image` metadata (e.g., "dicom",
115
- "nifti", "nrrd"). This is advisory and application-defined.
116
- * **Dataclass:** None (string).
117
-
118
- ---
119
-
120
105
  ### _blosc2
121
106
 
122
107
  * **Description:** Blosc2 layout parameters.
@@ -132,6 +117,21 @@ This section records how the array was laid out on disk (chunking, blocking, pat
132
117
 
133
118
  ---
134
119
 
120
+ ### _has_array
121
+
122
+ * **Description:** Whether this metadata instance represents an on-disk array.
123
+ * **Dataclass:** None (boolean).
124
+
125
+ ---
126
+
127
+ ### _image_meta_format
128
+
129
+ * **Description:** Source format identifier for the `image` metadata (e.g., "dicom",
130
+ "nifti", "nrrd"). This is advisory and application-defined.
131
+ * **Dataclass:** None (string).
132
+
133
+ ---
134
+
135
135
  ### _mlarray_version
136
136
 
137
137
  * **Description:** MLArray version string used to write the file.
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