deriva-ml 1.17.14__py3-none-any.whl → 1.17.16__py3-none-any.whl

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 (53) hide show
  1. deriva_ml/__init__.py +2 -2
  2. deriva_ml/asset/asset.py +0 -4
  3. deriva_ml/catalog/__init__.py +6 -0
  4. deriva_ml/catalog/clone.py +1591 -38
  5. deriva_ml/catalog/localize.py +66 -29
  6. deriva_ml/core/base.py +12 -9
  7. deriva_ml/core/definitions.py +13 -12
  8. deriva_ml/core/ermrest.py +11 -12
  9. deriva_ml/core/mixins/annotation.py +2 -2
  10. deriva_ml/core/mixins/asset.py +3 -3
  11. deriva_ml/core/mixins/dataset.py +3 -3
  12. deriva_ml/core/mixins/execution.py +1 -0
  13. deriva_ml/core/mixins/feature.py +2 -2
  14. deriva_ml/core/mixins/file.py +2 -2
  15. deriva_ml/core/mixins/path_builder.py +2 -2
  16. deriva_ml/core/mixins/rid_resolution.py +2 -2
  17. deriva_ml/core/mixins/vocabulary.py +2 -2
  18. deriva_ml/core/mixins/workflow.py +3 -3
  19. deriva_ml/dataset/catalog_graph.py +3 -4
  20. deriva_ml/dataset/dataset.py +5 -3
  21. deriva_ml/dataset/dataset_bag.py +0 -2
  22. deriva_ml/dataset/upload.py +2 -2
  23. deriva_ml/demo_catalog.py +0 -1
  24. deriva_ml/execution/__init__.py +8 -8
  25. deriva_ml/execution/base_config.py +2 -2
  26. deriva_ml/execution/execution.py +5 -3
  27. deriva_ml/execution/execution_record.py +0 -1
  28. deriva_ml/execution/model_protocol.py +1 -1
  29. deriva_ml/execution/multirun_config.py +0 -1
  30. deriva_ml/execution/runner.py +3 -3
  31. deriva_ml/experiment/experiment.py +3 -3
  32. deriva_ml/feature.py +2 -2
  33. deriva_ml/interfaces.py +2 -2
  34. deriva_ml/model/__init__.py +45 -24
  35. deriva_ml/model/annotations.py +0 -1
  36. deriva_ml/model/catalog.py +3 -2
  37. deriva_ml/model/data_loader.py +330 -0
  38. deriva_ml/model/data_sources.py +439 -0
  39. deriva_ml/model/database.py +216 -32
  40. deriva_ml/model/fk_orderer.py +379 -0
  41. deriva_ml/model/handles.py +1 -1
  42. deriva_ml/model/schema_builder.py +816 -0
  43. deriva_ml/run_model.py +3 -3
  44. deriva_ml/schema/annotations.py +2 -1
  45. deriva_ml/schema/create_schema.py +1 -1
  46. deriva_ml/schema/validation.py +1 -1
  47. {deriva_ml-1.17.14.dist-info → deriva_ml-1.17.16.dist-info}/METADATA +1 -1
  48. deriva_ml-1.17.16.dist-info/RECORD +81 -0
  49. deriva_ml-1.17.14.dist-info/RECORD +0 -77
  50. {deriva_ml-1.17.14.dist-info → deriva_ml-1.17.16.dist-info}/WHEEL +0 -0
  51. {deriva_ml-1.17.14.dist-info → deriva_ml-1.17.16.dist-info}/entry_points.txt +0 -0
  52. {deriva_ml-1.17.14.dist-info → deriva_ml-1.17.16.dist-info}/licenses/LICENSE +0 -0
  53. {deriva_ml-1.17.14.dist-info → deriva_ml-1.17.16.dist-info}/top_level.txt +0 -0
deriva_ml/run_model.py CHANGED
@@ -29,10 +29,10 @@ from deriva.core import BaseCLI
29
29
  from hydra_zen import store, zen
30
30
 
31
31
  from deriva_ml.execution import (
32
- run_model,
33
- load_configs,
34
- get_multirun_config,
35
32
  get_all_multirun_configs,
33
+ get_multirun_config,
34
+ load_configs,
35
+ run_model,
36
36
  )
37
37
 
38
38
 
@@ -1,8 +1,9 @@
1
1
  import argparse
2
- import sys
3
2
 
4
3
  # Deriva imports - use importlib to avoid shadowing by local 'deriva.py' files
5
4
  import importlib
5
+ import sys
6
+
6
7
  _ermrest_model = importlib.import_module("deriva.core.ermrest_model")
7
8
  _core_utils = importlib.import_module("deriva.core.utils.core_utils")
8
9
 
@@ -7,6 +7,7 @@ from typing import Any, Optional
7
7
  from deriva.core import DerivaServer, ErmrestCatalog, get_credential
8
8
  from deriva.core.ermrest_model import Model, Schema, Table
9
9
  from deriva.core.typed import (
10
+ AssetTableDef,
10
11
  BuiltinType,
11
12
  ColumnDef,
12
13
  ForeignKeyDef,
@@ -14,7 +15,6 @@ from deriva.core.typed import (
14
15
  SchemaDef,
15
16
  TableDef,
16
17
  VocabularyTableDef,
17
- AssetTableDef,
18
18
  )
19
19
 
20
20
  from deriva_ml.core.definitions import ML_SCHEMA, MLTable, MLVocab
@@ -26,7 +26,7 @@ from typing import TYPE_CHECKING, Any
26
26
  if TYPE_CHECKING:
27
27
  from deriva_ml.core.base import DerivaML
28
28
 
29
- from deriva_ml.core.definitions import ML_SCHEMA, MLTable, MLVocab
29
+ from deriva_ml.core.definitions import MLTable, MLVocab
30
30
 
31
31
 
32
32
  class ValidationSeverity(str, Enum):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deriva-ml
3
- Version: 1.17.14
3
+ Version: 1.17.16
4
4
  Summary: Utilities to simplify use of Dervia and Pandas to create reproducable ML pipelines
5
5
  Author-email: ISRD <isrd-dev@isi.edu>
6
6
  Requires-Python: >=3.12
@@ -0,0 +1,81 @@
1
+ deriva_ml/.DS_Store,sha256=gb-f5IXVed_gS5Be1Z6WxCYjrI_r5SdblvfFpIOY4ro,8196
2
+ deriva_ml/__init__.py,sha256=l-0UL_Q3tcWx2gFTAlzg9-zBvhM3eR9CwJHF8NqXNSs,4152
3
+ deriva_ml/bump_version.py,sha256=DrVJA8AKqvwQ8Cc-omBLOjfDcKdBxUXm_XNj11SIJZo,11905
4
+ deriva_ml/demo_catalog.py,sha256=W3Uihbtl9YDj82oGfr7OT3KVT96aggWsTI-Kc1W7pY0,17708
5
+ deriva_ml/feature.py,sha256=Xt-pZBbZZWxv9jnBhbk_L6mux1JiTL5DANKe3UGSNDA,8661
6
+ deriva_ml/install_kernel.py,sha256=_hN9cnfuxhTP2w0zmITol0aFYUGqnYT3LqMVWkUIDVg,6825
7
+ deriva_ml/interfaces.py,sha256=IxEY0M7BIHVyRD5IybSHK7z5P_TLQzozvMvC6RMaqPE,30109
8
+ deriva_ml/run_model.py,sha256=d-88hRqPNgfArTYgSU_X30FEHusvjFb7gpR-Bq2WxQY,11823
9
+ deriva_ml/run_notebook.py,sha256=BUShaMlzExfcjerm54en_zow2rcQFK6L0eHX-wwt_cg,27713
10
+ deriva_ml/asset/__init__.py,sha256=YuV0rFEL0kMDzB8W-qWiUs6HahEadiaYWuS-d3OcoMw,445
11
+ deriva_ml/asset/asset.py,sha256=UX1Kpx6PEYAjmClFwjdWMK1hTmYeQc4lxLeGk0G2pz8,13309
12
+ deriva_ml/asset/aux_classes.py,sha256=QIH_pd3koIG04fb-gzHVgdKtykfVgDGJH3F7RN3-dwg,3486
13
+ deriva_ml/catalog/__init__.py,sha256=mR523GRLrymC65Z0yPZnv2VGLuHSnjggRWh0ZTPZU9o,840
14
+ deriva_ml/catalog/clone.py,sha256=nCiMhC0IHGIElhAp4nP2azpoDBI9CC1hFrhIr5x03fw,136170
15
+ deriva_ml/catalog/localize.py,sha256=p33gxJE9fgFNTFUlh7LIKmO8SjYdWmHUBtd0_UoUu78,17149
16
+ deriva_ml/core/__init__.py,sha256=oqWgo4ckyAfebeXBQXJ9O8ans81tbmzPRnsVHLeVXT8,2000
17
+ deriva_ml/core/base.py,sha256=W5gLM0lHEbxh9xASqn4aAAN17gj-poeeGaZBMFhlBRU,57180
18
+ deriva_ml/core/config.py,sha256=2RjpJrzdXC1JlrDGozWbtW_0YAbOf7eyHHr-E0xTozw,9681
19
+ deriva_ml/core/constants.py,sha256=dlS3Wa7Tmmh2JVhhCJjN5Wltu0bJB5rMOSChJ1bdhRA,5300
20
+ deriva_ml/core/definitions.py,sha256=oOezqSHDLzS959t6UByiE_p3SIDIhhtGJw_SZcFV1V0,5579
21
+ deriva_ml/core/enums.py,sha256=QonjDcebyEa8BmGkDUvMjYlLQYJXAbtOd8GG3ZvVXE4,6702
22
+ deriva_ml/core/ermrest.py,sha256=T964lLBHs92QLwP_kyVyvNp6TWkt1Xl21ao-_0MFGZ8,10067
23
+ deriva_ml/core/exceptions.py,sha256=RKiPRe84t2ekjqeVOuMde7B8LjUH1lFu5jfN4sqXM6I,10255
24
+ deriva_ml/core/filespec.py,sha256=jfZyXWjp6khRmB2hJbCUM9n2oW7TjfQ2KQScYgGkVJI,7534
25
+ deriva_ml/core/logging_config.py,sha256=Nbs_8AbjSeJ0epONXC1oGcq5BmvnYsV5tcZ3qbLk_FU,7424
26
+ deriva_ml/core/validation.py,sha256=TcGPmjmw2e0WI5cPcszHi_vc2ePnw7hh2GXV7YKsaU4,14369
27
+ deriva_ml/core/mixins/__init__.py,sha256=0NhK7BKeEB6tznNqCLyZo3RGoHg0FkubFET9jPMrdsY,1719
28
+ deriva_ml/core/mixins/annotation.py,sha256=SeohJGPCC8NGwEY25Ag5aLPxUurX82g5FQjthMOKnaY,35754
29
+ deriva_ml/core/mixins/asset.py,sha256=Tba277vArKyrk2LpYW8bKSpkWGEl-16kXK2Mel0MPdk,15024
30
+ deriva_ml/core/mixins/dataset.py,sha256=OUs2EU2mfU_hYtjgTPyOPjqoebyz5vxMPc3J_5FYDck,9389
31
+ deriva_ml/core/mixins/execution.py,sha256=drTtvJWNkiwbUG4Q82XNe4fUIZz4zev_qMB0teiXOEY,16498
32
+ deriva_ml/core/mixins/feature.py,sha256=0O7IrIefRaOuTV1WHuxThbDoqF40qpZu8rU2lJupbIc,16475
33
+ deriva_ml/core/mixins/file.py,sha256=ZDfi62knh0nFyucaFL8DOOWIqZ-etQLBmnS1Qed4QL4,11531
34
+ deriva_ml/core/mixins/path_builder.py,sha256=EjCw9h8fPGbwZYwboTujImpFGTZN3RU1p7x-PoruF8g,5311
35
+ deriva_ml/core/mixins/rid_resolution.py,sha256=zucuhEPPjIdEGkvDGlk0JvGrryl8J_W-mTg6mOet2ns,7197
36
+ deriva_ml/core/mixins/vocabulary.py,sha256=u2iXsns45QVEl0aoNK8nNJ_UstBukkiagHxK8RdCrto,16500
37
+ deriva_ml/core/mixins/workflow.py,sha256=nRLzbOLnNF2liF-tq7aT7VOAxofrqLBye9-MugbRcVs,12907
38
+ deriva_ml/dataset/__init__.py,sha256=nIU6NLF3LJ_8FF4caOwtOpZPYFRAECZFeWtA_hcdCbM,329
39
+ deriva_ml/dataset/aux_classes.py,sha256=mwSgatqIbjvz-kaxD2zzFt-tufKMDM3hgQLyS-KrZ8w,7881
40
+ deriva_ml/dataset/catalog_graph.py,sha256=Si7_QPhXpxEpF-f0hB6lo3fPqBbrjvBoEpQILcKlZ3A,23725
41
+ deriva_ml/dataset/dataset.py,sha256=Kx1UcnohdA3uIU2MIDWQcC5f8TsHbAc8_5wbNQA6WP0,75786
42
+ deriva_ml/dataset/dataset_bag.py,sha256=gfDZxSQ_IDJv8RUSB1UxZeejsoipRKE3TndE0lMID0w,71040
43
+ deriva_ml/dataset/history.py,sha256=1KssgoluZSJYyEBfnfb7miaUFZzGnGLhvhaJikey44Y,3467
44
+ deriva_ml/dataset/upload.py,sha256=fcEWyGIinQVnmIIudLlJA566ipWCPEVodf2RVpQskLc,24845
45
+ deriva_ml/execution/__init__.py,sha256=a9fpoKGQBSMr559UsUmi680HyB8gBT0DdYKyOMCYdjI,1844
46
+ deriva_ml/execution/base_config.py,sha256=74hOBRd4NBp1UvfeEefxDnyaa2EL-W9_jCsMX53zDQg,22843
47
+ deriva_ml/execution/environment.py,sha256=B7nywqxFTRUWgyu8n7rFoKcVC9on422kjeFG2FPQfvg,9302
48
+ deriva_ml/execution/execution.py,sha256=UzRLwmJn3ce9vQ-R64mDVk5MUy8BzjuCnBcXfL-cYbk,59315
49
+ deriva_ml/execution/execution_configuration.py,sha256=nQ56-_KGqa-hBKYgA4G7D9ncjLKUGbjwDpiLnRon9SA,6464
50
+ deriva_ml/execution/execution_record.py,sha256=vF1EmQbmjbnfe0KbyFNFJtfwK1SzfCE7tyzidbJKiRw,22399
51
+ deriva_ml/execution/find_caller.py,sha256=Rz5LPRYwM5u3qAX0A6inJYZZPF_VCHUU0kK1zTAjirg,10059
52
+ deriva_ml/execution/model_protocol.py,sha256=bFhRTpFU1FFdpXr2LlidkYXlrzX9W5KLLWRoyWr_V3k,5937
53
+ deriva_ml/execution/multirun_config.py,sha256=ZQaSRIg_ctALCrsnWwrT5KwXnDJEEc2zquHrEaVK2BQ,4978
54
+ deriva_ml/execution/runner.py,sha256=DkQhB8lvw4MDc4MCAJ7_nChR69mqoB45XFnSse1Inro,21560
55
+ deriva_ml/execution/workflow.py,sha256=dcEaiTr2Uj4AASmUR5yai3vkrjfv3KzTO5J239PNOHE,23353
56
+ deriva_ml/experiment/__init__.py,sha256=HWyh4p-QOt-6sRFv-JLxvPuZxth8M2xTGfAwDx_OKJM,202
57
+ deriva_ml/experiment/experiment.py,sha256=gYoLX84Y417VSgQseUCO2ewV57WCTsEZKvAkGVrsx1Y,15294
58
+ deriva_ml/model/__init__.py,sha256=_bM_c4hz4aY-RIC6qNokyf3OwNBlWYTemDJ190rAZ5A,3086
59
+ deriva_ml/model/annotations.py,sha256=K4RNcbtD52sr9TbKxqf_zXrQP7rMr379Dwq1YKjYAIQ,43568
60
+ deriva_ml/model/catalog.py,sha256=Wn4ivwthE4HIGzkaegl-JA__UxLv81-8CbkxMna4YDQ,28856
61
+ deriva_ml/model/data_loader.py,sha256=1dAQSx_-xiNlnWWsQ8Tp2W3n8nagktDirAr-dvUTZFo,10474
62
+ deriva_ml/model/data_sources.py,sha256=oxqP8cFAVWT8UUFx5WQfpgqNV9EXcuQW_S3KBLe_Ywo,13548
63
+ deriva_ml/model/database.py,sha256=11HSCH3Ea1FdvnAuctrOnrk5j-BXBFq675Nsxlrmock,13878
64
+ deriva_ml/model/deriva_ml_database.py,sha256=73_P5mArxe3zyAtBaZSop9V9cw-uweHEh811cPU0h0Y,10523
65
+ deriva_ml/model/fk_orderer.py,sha256=pTIPwThOhykl8-H3OkVAVr5c8jp_9X5gnMubLxUfP44,12291
66
+ deriva_ml/model/handles.py,sha256=12h_9uduZhYD82dEmIgomegAbQpFi52JN39z1XN4MBc,478
67
+ deriva_ml/model/schema_builder.py,sha256=vIO7re0q2ZwKaNjD_qquZVp3P3d_8C6ermgpLTXFLaw,30935
68
+ deriva_ml/schema/__init__.py,sha256=3PHvAWwx-qsTFnceKUdgZN1sln0n6-yXj1O59uV15WY,473
69
+ deriva_ml/schema/annotations.py,sha256=uZ83t9fI1fE9XcufmeInAjn-knawHGTNDzi1W99mBng,19601
70
+ deriva_ml/schema/check_schema.py,sha256=6dadLYHPqRex6AYVClmsESI8WhC7-rb-XnGf2G298xw,3609
71
+ deriva_ml/schema/create_schema.py,sha256=KJv-7eQrF8T96vQYPoKeUrA8MLJafiYyb1QFrhTrE2Q,16614
72
+ deriva_ml/schema/deriva-ml-reference.json,sha256=AEOMIgwKO3dNMMWHb0lxaXyamvfAEbUPh8qw0aAtsUQ,242460
73
+ deriva_ml/schema/policy.json,sha256=5ykB8nnZFl-oCHzlAwppCFKJHWJFIkYognUMVEanfY8,1826
74
+ deriva_ml/schema/table_comments_utils.py,sha256=4flCqnZAaqg_uSZ9I18pNUWAZoLfmMCXbmI5uERY5vM,2007
75
+ deriva_ml/schema/validation.py,sha256=el5Sfh7ne_FoJ2KVUk9DxD3p7AS5ScZ5wmO0ykNtlRw,19901
76
+ deriva_ml-1.17.16.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
77
+ deriva_ml-1.17.16.dist-info/METADATA,sha256=DvZ21vg2feB01pN6pJ9uRIvf9-KvEO6U87JYPoBuUjM,1216
78
+ deriva_ml-1.17.16.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
79
+ deriva_ml-1.17.16.dist-info/entry_points.txt,sha256=nwRBpDI6yGUMhvEJG__O0LHz6JovazaVXhykvSNF4og,554
80
+ deriva_ml-1.17.16.dist-info/top_level.txt,sha256=I1Q1dkH96cRghdsFRVqwpa2M7IqJpR2QPUNNc5-Bnpw,10
81
+ deriva_ml-1.17.16.dist-info/RECORD,,
@@ -1,77 +0,0 @@
1
- deriva_ml/.DS_Store,sha256=gb-f5IXVed_gS5Be1Z6WxCYjrI_r5SdblvfFpIOY4ro,8196
2
- deriva_ml/__init__.py,sha256=a7mk8HCe7i3SUGPRPm5ECvZwAYHswAEwgeGD6CBIAEk,4152
3
- deriva_ml/bump_version.py,sha256=DrVJA8AKqvwQ8Cc-omBLOjfDcKdBxUXm_XNj11SIJZo,11905
4
- deriva_ml/demo_catalog.py,sha256=_gQVeZm38dHmd2EThhfvCWRPt1meSuNXerkRULRO87U,17760
5
- deriva_ml/feature.py,sha256=Ap0cIK0kElAEfvlbfYtrWB23NJgy8St6Okhz-nDEZqY,8661
6
- deriva_ml/install_kernel.py,sha256=_hN9cnfuxhTP2w0zmITol0aFYUGqnYT3LqMVWkUIDVg,6825
7
- deriva_ml/interfaces.py,sha256=yzlkHqnm3-7az2DLgWsxoE5Ez2K5zPoo6r5sY-h3NFE,30109
8
- deriva_ml/run_model.py,sha256=Nvet2pjJ9UD3LdD7palaM7UjNdqv2y_mCaI8yu0U1B8,11823
9
- deriva_ml/run_notebook.py,sha256=BUShaMlzExfcjerm54en_zow2rcQFK6L0eHX-wwt_cg,27713
10
- deriva_ml/asset/__init__.py,sha256=YuV0rFEL0kMDzB8W-qWiUs6HahEadiaYWuS-d3OcoMw,445
11
- deriva_ml/asset/asset.py,sha256=A8938V8iVufOzk5HdDxm5If1OkaLX1YJqQw-K-Um2rI,13489
12
- deriva_ml/asset/aux_classes.py,sha256=QIH_pd3koIG04fb-gzHVgdKtykfVgDGJH3F7RN3-dwg,3486
13
- deriva_ml/catalog/__init__.py,sha256=4rIVLhv8tlA3k5VEu8CrvCAkY22WTy36FgDtQBUjvNc,700
14
- deriva_ml/catalog/clone.py,sha256=iZ0AZROHjM38s2kIL9cfFuW_9cByntuCAhEVjyF4qO4,74954
15
- deriva_ml/catalog/localize.py,sha256=-YNvB_dYo0RjoI-VDj2Yu_qFB8TeAFPHfOJTYMTMYF8,14981
16
- deriva_ml/core/__init__.py,sha256=oqWgo4ckyAfebeXBQXJ9O8ans81tbmzPRnsVHLeVXT8,2000
17
- deriva_ml/core/base.py,sha256=THdHOrTp7Rk0DxyzHW4PildQixn8Z-mqP1jCWMMgtxY,57135
18
- deriva_ml/core/config.py,sha256=2RjpJrzdXC1JlrDGozWbtW_0YAbOf7eyHHr-E0xTozw,9681
19
- deriva_ml/core/constants.py,sha256=dlS3Wa7Tmmh2JVhhCJjN5Wltu0bJB5rMOSChJ1bdhRA,5300
20
- deriva_ml/core/definitions.py,sha256=EPGTtUT0cBuss4sZRY-0mQHab9GqBZYdc4ozbxFqC4o,5578
21
- deriva_ml/core/enums.py,sha256=QonjDcebyEa8BmGkDUvMjYlLQYJXAbtOd8GG3ZvVXE4,6702
22
- deriva_ml/core/ermrest.py,sha256=hL0JvrIIS3rkiG6brv79fWUM_2BVIQeLgBajN3pxxeI,10068
23
- deriva_ml/core/exceptions.py,sha256=RKiPRe84t2ekjqeVOuMde7B8LjUH1lFu5jfN4sqXM6I,10255
24
- deriva_ml/core/filespec.py,sha256=jfZyXWjp6khRmB2hJbCUM9n2oW7TjfQ2KQScYgGkVJI,7534
25
- deriva_ml/core/logging_config.py,sha256=Nbs_8AbjSeJ0epONXC1oGcq5BmvnYsV5tcZ3qbLk_FU,7424
26
- deriva_ml/core/validation.py,sha256=TcGPmjmw2e0WI5cPcszHi_vc2ePnw7hh2GXV7YKsaU4,14369
27
- deriva_ml/core/mixins/__init__.py,sha256=0NhK7BKeEB6tznNqCLyZo3RGoHg0FkubFET9jPMrdsY,1719
28
- deriva_ml/core/mixins/annotation.py,sha256=Ttxoc7X34ttYICKDJJ_9zKmHfE3aYwNAraay8ZiLPY4,35754
29
- deriva_ml/core/mixins/asset.py,sha256=T5bjaq8xJfIt6O2V6ZtwZUw2dUFfHHZ7CPIsOaronzI,15024
30
- deriva_ml/core/mixins/dataset.py,sha256=_bhXfeI3IYlqufWGQMRxTQhhJ6AFKyKkaFYMh4qINMU,9398
31
- deriva_ml/core/mixins/execution.py,sha256=TrEatmtFBI7zDLkXJ9b4m-md9_0NwImepOxnmQ-PqX0,16497
32
- deriva_ml/core/mixins/feature.py,sha256=k4es3OQXtClyr5Ku0WrDm29hocu9j8kLzEkeLuRC-XU,16475
33
- deriva_ml/core/mixins/file.py,sha256=1fOsqLNbYSBWkzPwzrkhZaPmtef6nFfP9RMAYY6rnVQ,11531
34
- deriva_ml/core/mixins/path_builder.py,sha256=cwtbsXEGBm8pG1ohF36pmy6cN4wfCZ6xS3pPoO-c9QU,5311
35
- deriva_ml/core/mixins/rid_resolution.py,sha256=Th3b11KrT_NDjhl61yhmep1T1HK8RWlV98IHaJz3Qpo,7197
36
- deriva_ml/core/mixins/vocabulary.py,sha256=-XMRx6zMJIl6fBkJ8TkEE6SXGTwofpvKqI4KQCU6qB0,16500
37
- deriva_ml/core/mixins/workflow.py,sha256=KPMVrfiAkLujJrQka0rQZC1rvfp_S5HIGgDc5sPmBdI,12951
38
- deriva_ml/dataset/__init__.py,sha256=nIU6NLF3LJ_8FF4caOwtOpZPYFRAECZFeWtA_hcdCbM,329
39
- deriva_ml/dataset/aux_classes.py,sha256=mwSgatqIbjvz-kaxD2zzFt-tufKMDM3hgQLyS-KrZ8w,7881
40
- deriva_ml/dataset/catalog_graph.py,sha256=LfIq-ir7DG0fQ0jGbCVdFDptoDmwrbMcoF56T01lKLs,23827
41
- deriva_ml/dataset/dataset.py,sha256=aGrjmEswLbEE1m32K4ttnVO7TAUtbK6QlOkudXfxOlk,75756
42
- deriva_ml/dataset/dataset_bag.py,sha256=wGTHg3NSCk2wSMhrPOlrSWxmoyU2UYLDSnnNuv33cwo,71081
43
- deriva_ml/dataset/history.py,sha256=1KssgoluZSJYyEBfnfb7miaUFZzGnGLhvhaJikey44Y,3467
44
- deriva_ml/dataset/upload.py,sha256=Z9jxC-r9wS9__YmnAKrM4cPM8KCFMgzKxbcOLMS3H-8,24845
45
- deriva_ml/execution/__init__.py,sha256=INLwbtaD5GcdL-VI0OwvavfpoS4Y--UirFIrvtKeoEM,1844
46
- deriva_ml/execution/base_config.py,sha256=fJxhW7owHCUjl7nP9gY592bGx8NMCbQh8Rqlzb7cg1w,22856
47
- deriva_ml/execution/environment.py,sha256=B7nywqxFTRUWgyu8n7rFoKcVC9on422kjeFG2FPQfvg,9302
48
- deriva_ml/execution/execution.py,sha256=F8xYWLpCRYgR-SmQMlyAXaIye-r8j0o0XMmnIEXT4M4,59285
49
- deriva_ml/execution/execution_configuration.py,sha256=nQ56-_KGqa-hBKYgA4G7D9ncjLKUGbjwDpiLnRon9SA,6464
50
- deriva_ml/execution/execution_record.py,sha256=oGMstOP2lA6yazZwd8pn2XZZoWePEkZLllJVzGc4uyE,22447
51
- deriva_ml/execution/find_caller.py,sha256=Rz5LPRYwM5u3qAX0A6inJYZZPF_VCHUU0kK1zTAjirg,10059
52
- deriva_ml/execution/model_protocol.py,sha256=FsxMBWT6c8ZNjUblaEZUKOqe4hQ-5CWfMwigwSWM_I0,5937
53
- deriva_ml/execution/multirun_config.py,sha256=q9hkFOSu-uudUvkJYB8fZNcOGbRXlJ6KVUkRwCqT6X4,5001
54
- deriva_ml/execution/runner.py,sha256=Ax9D705DoiJXd9zrB2oPaVTqoe3o6Rch_5lmw_e-a80,21584
55
- deriva_ml/execution/workflow.py,sha256=dcEaiTr2Uj4AASmUR5yai3vkrjfv3KzTO5J239PNOHE,23353
56
- deriva_ml/experiment/__init__.py,sha256=HWyh4p-QOt-6sRFv-JLxvPuZxth8M2xTGfAwDx_OKJM,202
57
- deriva_ml/experiment/experiment.py,sha256=-QII2Hp54_ol2zZnuQFKFfCGy6U3x38XlUXoJoRfjE4,15294
58
- deriva_ml/model/__init__.py,sha256=MAYOlVDW91FCD5RxLurVxDssDeqIkE68M_X2c_f32FI,2263
59
- deriva_ml/model/annotations.py,sha256=JvT2VZeYsP2XY52nI1Oqit_NlDJk5tOLcH7z4QrUuAw,43569
60
- deriva_ml/model/catalog.py,sha256=XHzksbtk6HJ4DEOMhI6aryOvtNOQ-DAKyVEqkEaOd0A,28855
61
- deriva_ml/model/database.py,sha256=mm8VP3ve_KRWBsfwkfGxJTXaGpjH7rtEzyLKJccEwDY,7906
62
- deriva_ml/model/deriva_ml_database.py,sha256=73_P5mArxe3zyAtBaZSop9V9cw-uweHEh811cPU0h0Y,10523
63
- deriva_ml/model/handles.py,sha256=cTGVO1_WaFs26y361dTciJj62eZ-FYcFQ2w3EmO9ovs,478
64
- deriva_ml/schema/__init__.py,sha256=3PHvAWwx-qsTFnceKUdgZN1sln0n6-yXj1O59uV15WY,473
65
- deriva_ml/schema/annotations.py,sha256=bR9Kid1blz0hGS64v2oWRe3qP2wwAr3Ka0dM_urBmA0,19600
66
- deriva_ml/schema/check_schema.py,sha256=6dadLYHPqRex6AYVClmsESI8WhC7-rb-XnGf2G298xw,3609
67
- deriva_ml/schema/create_schema.py,sha256=Hhkz5hJCgTbn1pZJn_q8rJODhrji2e1-iYuP0My9guo,16614
68
- deriva_ml/schema/deriva-ml-reference.json,sha256=AEOMIgwKO3dNMMWHb0lxaXyamvfAEbUPh8qw0aAtsUQ,242460
69
- deriva_ml/schema/policy.json,sha256=5ykB8nnZFl-oCHzlAwppCFKJHWJFIkYognUMVEanfY8,1826
70
- deriva_ml/schema/table_comments_utils.py,sha256=4flCqnZAaqg_uSZ9I18pNUWAZoLfmMCXbmI5uERY5vM,2007
71
- deriva_ml/schema/validation.py,sha256=C0TvWj2kjOj40w1N5FIWp55DWPdLPN8tk3JJfN5ezW4,19912
72
- deriva_ml-1.17.14.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
73
- deriva_ml-1.17.14.dist-info/METADATA,sha256=W6VC0nyu4HSsP8Yq7TVr61n3mWfuyE-GXvVZXBLmwOQ,1216
74
- deriva_ml-1.17.14.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
75
- deriva_ml-1.17.14.dist-info/entry_points.txt,sha256=nwRBpDI6yGUMhvEJG__O0LHz6JovazaVXhykvSNF4og,554
76
- deriva_ml-1.17.14.dist-info/top_level.txt,sha256=I1Q1dkH96cRghdsFRVqwpa2M7IqJpR2QPUNNc5-Bnpw,10
77
- deriva_ml-1.17.14.dist-info/RECORD,,