Croissant¶
MLCommons Croissant 1.1 JSON-LD generation and validation, including a SHA-256
per exported CSV. mlcroissant is an optional dependency and is imported lazily.
croissant
¶
Croissant (MLCommons) JSON-LD metadata generation and validation.
Generates Croissant 1.1 JSON-LD using the mlcroissant library (optional dep). Includes SHA-256 hashes for all CSV files in the splits directory.
generate_croissant
¶
generate_croissant(config: DatasetConfig, splits_dir: Path, version: str = 'clean') -> dict
Generate Croissant 1.1 JSON-LD for a dataset version.
Uses the mlcroissant library to build a valid Metadata object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
DatasetConfig
|
DatasetConfig |
required |
splits_dir
|
Path
|
Path to the version dir (e.g., .../ptbxl/clean/) |
required |
version
|
str
|
"original" or "clean" |
'clean'
|
Returns:
| Type | Description |
|---|---|
dict
|
dict — the Croissant JSON-LD |
Source code in ecgbench/croissant.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | |
save_croissant
¶
save_croissant(config: DatasetConfig, splits_dir: Path, output_path: Path | None = None, version: str = 'clean') -> Path
Generate and save croissant.json.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
DatasetConfig
|
DatasetConfig |
required |
splits_dir
|
Path
|
Path to the version dir |
required |
output_path
|
Path | None
|
Where to write. Defaults to splits_dir/croissant.json |
None
|
version
|
str
|
"original" or "clean" |
'clean'
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the saved file |
Source code in ecgbench/croissant.py
validate_croissant
¶
Validate a Croissant JSON-LD file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
croissant_path
|
Path
|
Path to the croissant.json file |
required |
Returns:
| Type | Description |
|---|---|
tuple[bool, list[str]]
|
(is_valid, list_of_errors) |