Ensemble
KoshEnsemble
Bases: KoshDataset
Source code in kosh/ensemble.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | |
__init__(id, store, schema=None, record=None)
Kosh Ensemble Ensemble allows to link together many datasets. These datasets will inherit attributes and associated sources from the ensemble.
:param id: dataset's unique Id
:type id: str
:param store: store containing the dataset
:type store: KoshSinaStore
:param schema: Kosh schema validator
:type schema: KoshSchema
:param record: to avoid looking up in sina pass sina record
:type record: Record
Source code in kosh/ensemble.py
__str__()
string representation
Source code in kosh/ensemble.py
add(dataset, inherit_attributes=True, ensemble_tags=None)
Adds a dataset to this ensemble
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset
|
KoshDataset | str
|
The dataset to add to this ensemble |
required |
inherit_attributes
|
bool
|
Whether datasets inherit attributes from ensembles. If False, datasets can have the same attributes as ensembles and the different ensembles that the dataset belongs to can also have the same attributes. They can also have different values. Defaults to True. |
True
|
ensemble_tags
|
dict
|
Organize datasets within ensemble by using tags. These "attributes"
are only available at the ensemble level for each dataset. These tags
can also be used in |
None
|
Source code in kosh/ensemble.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | |
cleanup_files(dry_run=False, interactive=False, **search_keys)
Cleanup the ensemble's members from references to dead files. You can filter associated objects by passing key=values e.g mime_type=hdf5 will only dissociate non-existing files associated with mime_type hdf5 some_att=some_val will only dissociate non-existing files associated and having the attribute 'some_att' with value of 'some_val' returns list of uris to be removed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dry_run
|
bool
|
Only does a dry_run |
False
|
interactive
|
bool
|
interactive mode, ask before dissociating |
False
|
Returns:
| Type | Description |
|---|---|
list
|
list of uris (to be) removed. |
Source code in kosh/ensemble.py
clone(*atts, **keys)
We cannot clone an ensemble
Source code in kosh/ensemble.py
create(name='Unnamed Dataset', id=None, metadata={}, schema=None, sina_type=None, ensemble_tags=None, inherit_attributes=True, **kargs)
create a new (possibly named) dataset as a member of this ensemble.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
(str, optional)
|
name for the dataset, defaults to None |
'Unnamed Dataset'
|
id
|
(str, optional)
|
unique Id, defaults to None which means use uuid4() |
None
|
metadata
|
(dict, optional)
|
dictionary of attribute/value pair for the dataset, defaults to {} |
{}
|
schema
|
KoshSchema
|
a KoshSchema object to validate datasets and when setting attributes |
None
|
sina_type
|
str
|
If you want to query the store for a specific sina record type, not just a dataset |
None
|
inherit_attributes
|
bool
|
Whether datasets inherit attributes from ensembles. If False, datasets can have the same attributes as ensembles and the different ensembles that the dataset belongs to can also have the same attributes. They can also have different values. Defaults to True. |
True
|
ensemble_tags
|
dict
|
Organize datasets within ensemble by using tags. These "attributes"
are only available at the ensemble level for each dataset. These tags
can also be used in |
None
|
kargs
|
dict
|
extra keyword arguments (ignored) |
{}
|
Returns:
| Type | Description |
|---|---|
KoshDataset
|
KoshDataset |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
Dataset already exists |
Source code in kosh/ensemble.py
export(file=None)
Exports this ensemble datasets
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file
|
None | str
|
export datasets to a file |
None
|
Returns:
| Type | Description |
|---|---|
dict
|
dataset and its associated data |
Source code in kosh/ensemble.py
find_datasets(ensemble_tags=None, *atts, **keys)
Find datasets members of this ensemble that are matching some metadata. Arguments are the metadata names we are looking for e.g find("attr1", "attr2") you can further restrict by specifying exact value for a metadata via key=value you can return ids only by using: ids_only=True range can be specified via: sina.utils.DataRange(min, max)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ensemble_tags
|
dict
|
Further filter out datasets with ensemble tags |
None
|
Returns:
| Type | Description |
|---|---|
generator
|
generator of matching datasets in this ensemble |
Source code in kosh/ensemble.py
get_members(ids_only=False)
Generator for member datasets
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ids_only
|
bool
|
generator will return ids if True Kosh datasets otherwise |
False
|
Returns:
| Type | Description |
|---|---|
str | KoshDataset
|
generator of dataset (or ids) |
Source code in kosh/ensemble.py
list_attributes(dictionary=False, no_duplicate=False)
list_attributes list all non protected attributes
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dictionary
|
bool
|
return a dictionary of value/pair rather than just attributes names |
False
|
no_duplicate
|
bool
|
return only attributes that cannot be duplicated in members |
False
|
Returns:
| Type | Description |
|---|---|
list
|
list of attributes set on object |
Source code in kosh/ensemble.py
remove(dataset)
Removes a dataset from this ensemble. Does not delete the dataset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dataset
|
KoshDataset | str
|
The dataset to remove |
required |
Source code in kosh/ensemble.py
to_dataframe(data_columns=[], include_ensemble_attributes=True, include_ensemble_tags=True, *atts, **keys)
Return the find_datasets object as a Pandas DataFrame.
Pass in the same arguments and keyword arguments as the find method.
Arguments are the metadata name we are looking for e.g find("attr1", "attr2") you can further restrict by specifying exact value for a metadata via key=value you can return ids only by using: ids_only=True range can be specified via: sina.utils.DataRange(min, max)
"file_uri" is a reserved key that will return all records being associated with the given "uri", e.g store.find(file_uri=uri) "types" let you search over specific sina record types only. "id_pool" will search based on id of Sina record or Kosh dataset. Can be a list.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data_columns
|
(Union(str, list), optional)
|
Columns to extract. By default this will include ['id', 'name', 'creator', 'creation_date', 'last_modified_date']. If nothing is passed, will return all data. |
[]
|
include_ensemble_attributes
|
(bool, optional)
|
Include ensemble attributes in DataFrame. |
True
|
include_ensemble_tags
|
(bool, optional)
|
Include ensemble tags in DataFrame. |
True
|
Returns:
| Type | Description |
|---|---|
Pandas DataFrame
|
Pandas DataFrame |
Source code in kosh/ensemble.py
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | |