ob-metaflow-stubs 6.0.3.153__py2.py3-none-any.whl → 6.0.3.155rc0__py2.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 (200) hide show
  1. metaflow-stubs/__init__.pyi +713 -598
  2. metaflow-stubs/cards.pyi +2 -2
  3. metaflow-stubs/cli.pyi +2 -2
  4. metaflow-stubs/cli_components/__init__.pyi +2 -2
  5. metaflow-stubs/cli_components/utils.pyi +2 -2
  6. metaflow-stubs/client/__init__.pyi +2 -2
  7. metaflow-stubs/client/core.pyi +4 -4
  8. metaflow-stubs/client/filecache.pyi +2 -2
  9. metaflow-stubs/events.pyi +2 -2
  10. metaflow-stubs/exception.pyi +2 -2
  11. metaflow-stubs/flowspec.pyi +5 -5
  12. metaflow-stubs/generated_for.txt +1 -1
  13. metaflow-stubs/includefile.pyi +4 -4
  14. metaflow-stubs/info_file.pyi +2 -2
  15. metaflow-stubs/metadata_provider/__init__.pyi +2 -2
  16. metaflow-stubs/metadata_provider/heartbeat.pyi +2 -2
  17. metaflow-stubs/metadata_provider/metadata.pyi +3 -3
  18. metaflow-stubs/metadata_provider/util.pyi +2 -2
  19. metaflow-stubs/metaflow_config.pyi +2 -2
  20. metaflow-stubs/metaflow_current.pyi +98 -98
  21. metaflow-stubs/mf_extensions/__init__.pyi +2 -2
  22. metaflow-stubs/mf_extensions/obcheckpoint/__init__.pyi +2 -2
  23. metaflow-stubs/mf_extensions/obcheckpoint/plugins/__init__.pyi +2 -2
  24. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/__init__.pyi +2 -2
  25. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/card_utils/__init__.pyi +2 -2
  26. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/card_utils/async_cards.pyi +3 -3
  27. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/card_utils/deco_injection_mixin.pyi +2 -2
  28. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/card_utils/extra_components.pyi +3 -3
  29. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/__init__.pyi +2 -2
  30. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/cards/__init__.pyi +2 -2
  31. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/cards/checkpoint_lister.pyi +4 -4
  32. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/cards/lineage_card.pyi +2 -2
  33. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/checkpoint_storage.pyi +7 -5
  34. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/constructors.pyi +2 -2
  35. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/core.pyi +11 -5
  36. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/decorator.pyi +6 -5
  37. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/exceptions.pyi +2 -2
  38. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/final_api.pyi +4 -2
  39. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/checkpoints/lineage.pyi +2 -2
  40. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/datastore/__init__.pyi +2 -2
  41. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/datastore/context.pyi +95 -0
  42. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/datastore/core.pyi +4 -8
  43. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/datastore/decorator.pyi +135 -0
  44. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/datastore/exceptions.pyi +2 -2
  45. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/datastore/task_utils.pyi +33 -5
  46. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/datastore/utils.pyi +2 -2
  47. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/datastructures.pyi +3 -3
  48. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/exceptions.pyi +2 -2
  49. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/hf_hub/__init__.pyi +2 -2
  50. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/hf_hub/decorator.pyi +3 -3
  51. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/modeling_utils/__init__.pyi +2 -2
  52. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/modeling_utils/core.pyi +4 -4
  53. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/modeling_utils/exceptions.pyi +2 -2
  54. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/modeling_utils/model_storage.pyi +4 -4
  55. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/utils/__init__.pyi +2 -2
  56. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/utils/flowspec_utils.pyi +2 -2
  57. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/utils/general.pyi +2 -2
  58. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/utils/identity_utils.pyi +3 -3
  59. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/utils/serialization_handler/__init__.pyi +2 -2
  60. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/utils/serialization_handler/base.pyi +2 -2
  61. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/utils/serialization_handler/tar.pyi +3 -3
  62. metaflow-stubs/mf_extensions/obcheckpoint/plugins/machine_learning_utilities/utils/tar_utils.pyi +3 -3
  63. metaflow-stubs/mf_extensions/outerbounds/__init__.pyi +2 -2
  64. metaflow-stubs/mf_extensions/outerbounds/plugins/__init__.pyi +2 -2
  65. metaflow-stubs/mf_extensions/outerbounds/plugins/card_utilities/__init__.pyi +2 -2
  66. metaflow-stubs/mf_extensions/outerbounds/plugins/card_utilities/injector.pyi +2 -2
  67. metaflow-stubs/mf_extensions/outerbounds/plugins/ollama/__init__.pyi +2 -2
  68. metaflow-stubs/mf_extensions/outerbounds/plugins/ollama/ollama.pyi +2 -2
  69. metaflow-stubs/mf_extensions/outerbounds/plugins/snowflake/__init__.pyi +2 -2
  70. metaflow-stubs/mf_extensions/outerbounds/plugins/snowflake/snowflake.pyi +2 -2
  71. metaflow-stubs/mf_extensions/outerbounds/profilers/__init__.pyi +2 -2
  72. metaflow-stubs/mf_extensions/outerbounds/profilers/gpu.pyi +2 -2
  73. metaflow-stubs/mf_extensions/outerbounds/remote_config.pyi +2 -2
  74. metaflow-stubs/mf_extensions/outerbounds/toplevel/__init__.pyi +2 -2
  75. metaflow-stubs/mf_extensions/outerbounds/toplevel/global_aliases_for_metaflow_package.pyi +2 -2
  76. metaflow-stubs/multicore_utils.pyi +2 -2
  77. metaflow-stubs/parameters.pyi +4 -4
  78. metaflow-stubs/plugins/__init__.pyi +15 -15
  79. metaflow-stubs/plugins/airflow/__init__.pyi +2 -2
  80. metaflow-stubs/plugins/airflow/airflow_utils.pyi +2 -2
  81. metaflow-stubs/plugins/airflow/exception.pyi +2 -2
  82. metaflow-stubs/plugins/airflow/sensors/__init__.pyi +2 -2
  83. metaflow-stubs/plugins/airflow/sensors/base_sensor.pyi +2 -2
  84. metaflow-stubs/plugins/airflow/sensors/external_task_sensor.pyi +2 -2
  85. metaflow-stubs/plugins/airflow/sensors/s3_sensor.pyi +2 -2
  86. metaflow-stubs/plugins/argo/__init__.pyi +2 -2
  87. metaflow-stubs/plugins/argo/argo_client.pyi +2 -2
  88. metaflow-stubs/plugins/argo/argo_events.pyi +2 -2
  89. metaflow-stubs/plugins/argo/argo_workflows.pyi +9 -3
  90. metaflow-stubs/plugins/argo/argo_workflows_decorator.pyi +3 -3
  91. metaflow-stubs/plugins/argo/argo_workflows_deployer.pyi +5 -5
  92. metaflow-stubs/plugins/argo/argo_workflows_deployer_objects.pyi +4 -4
  93. metaflow-stubs/plugins/aws/__init__.pyi +2 -2
  94. metaflow-stubs/plugins/aws/aws_client.pyi +2 -2
  95. metaflow-stubs/plugins/aws/aws_utils.pyi +2 -2
  96. metaflow-stubs/plugins/aws/batch/__init__.pyi +2 -2
  97. metaflow-stubs/plugins/aws/batch/batch.pyi +2 -2
  98. metaflow-stubs/plugins/aws/batch/batch_client.pyi +2 -2
  99. metaflow-stubs/plugins/aws/batch/batch_decorator.pyi +2 -2
  100. metaflow-stubs/plugins/aws/secrets_manager/__init__.pyi +2 -2
  101. metaflow-stubs/plugins/aws/secrets_manager/aws_secrets_manager_secrets_provider.pyi +4 -4
  102. metaflow-stubs/plugins/aws/step_functions/__init__.pyi +2 -2
  103. metaflow-stubs/plugins/aws/step_functions/event_bridge_client.pyi +2 -2
  104. metaflow-stubs/plugins/aws/step_functions/schedule_decorator.pyi +2 -2
  105. metaflow-stubs/plugins/aws/step_functions/step_functions.pyi +2 -2
  106. metaflow-stubs/plugins/aws/step_functions/step_functions_client.pyi +2 -2
  107. metaflow-stubs/plugins/aws/step_functions/step_functions_deployer.pyi +5 -5
  108. metaflow-stubs/plugins/aws/step_functions/step_functions_deployer_objects.pyi +4 -4
  109. metaflow-stubs/plugins/azure/__init__.pyi +2 -2
  110. metaflow-stubs/plugins/azure/azure_credential.pyi +2 -2
  111. metaflow-stubs/plugins/azure/azure_exceptions.pyi +2 -2
  112. metaflow-stubs/plugins/azure/azure_secret_manager_secrets_provider.pyi +4 -4
  113. metaflow-stubs/plugins/azure/azure_utils.pyi +2 -2
  114. metaflow-stubs/plugins/azure/blob_service_client_factory.pyi +2 -2
  115. metaflow-stubs/plugins/azure/includefile_support.pyi +2 -2
  116. metaflow-stubs/plugins/cards/__init__.pyi +6 -6
  117. metaflow-stubs/plugins/cards/card_client.pyi +2 -2
  118. metaflow-stubs/plugins/cards/card_creator.pyi +2 -2
  119. metaflow-stubs/plugins/cards/card_datastore.pyi +2 -2
  120. metaflow-stubs/plugins/cards/card_decorator.pyi +2 -2
  121. metaflow-stubs/plugins/cards/card_modules/__init__.pyi +2 -2
  122. metaflow-stubs/plugins/cards/card_modules/basic.pyi +2 -2
  123. metaflow-stubs/plugins/cards/card_modules/card.pyi +2 -2
  124. metaflow-stubs/plugins/cards/card_modules/components.pyi +4 -4
  125. metaflow-stubs/plugins/cards/card_modules/convert_to_native_type.pyi +2 -2
  126. metaflow-stubs/plugins/cards/card_modules/renderer_tools.pyi +2 -2
  127. metaflow-stubs/plugins/cards/card_modules/test_cards.pyi +2 -2
  128. metaflow-stubs/plugins/cards/card_resolver.pyi +2 -2
  129. metaflow-stubs/plugins/cards/component_serializer.pyi +2 -2
  130. metaflow-stubs/plugins/cards/exception.pyi +2 -2
  131. metaflow-stubs/plugins/catch_decorator.pyi +2 -2
  132. metaflow-stubs/plugins/datatools/__init__.pyi +2 -2
  133. metaflow-stubs/plugins/datatools/local.pyi +2 -2
  134. metaflow-stubs/plugins/datatools/s3/__init__.pyi +2 -2
  135. metaflow-stubs/plugins/datatools/s3/s3.pyi +5 -5
  136. metaflow-stubs/plugins/datatools/s3/s3tail.pyi +2 -2
  137. metaflow-stubs/plugins/datatools/s3/s3util.pyi +2 -2
  138. metaflow-stubs/plugins/debug_logger.pyi +2 -2
  139. metaflow-stubs/plugins/debug_monitor.pyi +2 -2
  140. metaflow-stubs/plugins/environment_decorator.pyi +2 -2
  141. metaflow-stubs/plugins/events_decorator.pyi +2 -2
  142. metaflow-stubs/plugins/frameworks/__init__.pyi +2 -2
  143. metaflow-stubs/plugins/frameworks/pytorch.pyi +2 -2
  144. metaflow-stubs/plugins/gcp/__init__.pyi +2 -2
  145. metaflow-stubs/plugins/gcp/gcp_secret_manager_secrets_provider.pyi +4 -4
  146. metaflow-stubs/plugins/gcp/gs_exceptions.pyi +2 -2
  147. metaflow-stubs/plugins/gcp/gs_storage_client_factory.pyi +2 -2
  148. metaflow-stubs/plugins/gcp/gs_utils.pyi +2 -2
  149. metaflow-stubs/plugins/gcp/includefile_support.pyi +2 -2
  150. metaflow-stubs/plugins/kubernetes/__init__.pyi +2 -2
  151. metaflow-stubs/plugins/kubernetes/kube_utils.pyi +3 -3
  152. metaflow-stubs/plugins/kubernetes/kubernetes.pyi +2 -2
  153. metaflow-stubs/plugins/kubernetes/kubernetes_client.pyi +2 -2
  154. metaflow-stubs/plugins/kubernetes/kubernetes_decorator.pyi +2 -2
  155. metaflow-stubs/plugins/kubernetes/kubernetes_jobsets.pyi +2 -2
  156. metaflow-stubs/plugins/kubernetes/spot_monitor_sidecar.pyi +2 -2
  157. metaflow-stubs/plugins/ollama/__init__.pyi +2 -2
  158. metaflow-stubs/plugins/parallel_decorator.pyi +2 -2
  159. metaflow-stubs/plugins/perimeters.pyi +2 -2
  160. metaflow-stubs/plugins/project_decorator.pyi +2 -2
  161. metaflow-stubs/plugins/pypi/__init__.pyi +3 -3
  162. metaflow-stubs/plugins/pypi/conda_decorator.pyi +2 -2
  163. metaflow-stubs/plugins/pypi/conda_environment.pyi +6 -6
  164. metaflow-stubs/plugins/pypi/parsers.pyi +2 -2
  165. metaflow-stubs/plugins/pypi/pypi_decorator.pyi +2 -2
  166. metaflow-stubs/plugins/pypi/pypi_environment.pyi +2 -2
  167. metaflow-stubs/plugins/pypi/utils.pyi +2 -2
  168. metaflow-stubs/plugins/resources_decorator.pyi +2 -2
  169. metaflow-stubs/plugins/retry_decorator.pyi +2 -2
  170. metaflow-stubs/plugins/secrets/__init__.pyi +3 -3
  171. metaflow-stubs/plugins/secrets/inline_secrets_provider.pyi +4 -4
  172. metaflow-stubs/plugins/secrets/secrets_decorator.pyi +2 -2
  173. metaflow-stubs/plugins/snowflake/__init__.pyi +2 -2
  174. metaflow-stubs/plugins/storage_executor.pyi +2 -2
  175. metaflow-stubs/plugins/test_unbounded_foreach_decorator.pyi +2 -2
  176. metaflow-stubs/plugins/timeout_decorator.pyi +2 -2
  177. metaflow-stubs/profilers/__init__.pyi +2 -2
  178. metaflow-stubs/pylint_wrapper.pyi +2 -2
  179. metaflow-stubs/runner/__init__.pyi +2 -2
  180. metaflow-stubs/runner/deployer.pyi +5 -5
  181. metaflow-stubs/runner/deployer_impl.pyi +3 -3
  182. metaflow-stubs/runner/metaflow_runner.pyi +4 -4
  183. metaflow-stubs/runner/nbdeploy.pyi +2 -2
  184. metaflow-stubs/runner/nbrun.pyi +2 -2
  185. metaflow-stubs/runner/subprocess_manager.pyi +2 -2
  186. metaflow-stubs/runner/utils.pyi +4 -4
  187. metaflow-stubs/system/__init__.pyi +2 -2
  188. metaflow-stubs/system/system_logger.pyi +3 -3
  189. metaflow-stubs/system/system_monitor.pyi +2 -2
  190. metaflow-stubs/tagging_util.pyi +2 -2
  191. metaflow-stubs/tuple_util.pyi +2 -2
  192. metaflow-stubs/user_configs/__init__.pyi +2 -2
  193. metaflow-stubs/user_configs/config_decorators.pyi +5 -5
  194. metaflow-stubs/user_configs/config_options.pyi +4 -4
  195. metaflow-stubs/user_configs/config_parameters.pyi +5 -5
  196. {ob_metaflow_stubs-6.0.3.153.dist-info → ob_metaflow_stubs-6.0.3.155rc0.dist-info}/METADATA +1 -1
  197. ob_metaflow_stubs-6.0.3.155rc0.dist-info/RECORD +200 -0
  198. ob_metaflow_stubs-6.0.3.153.dist-info/RECORD +0 -198
  199. {ob_metaflow_stubs-6.0.3.153.dist-info → ob_metaflow_stubs-6.0.3.155rc0.dist-info}/WHEEL +0 -0
  200. {ob_metaflow_stubs-6.0.3.153.dist-info → ob_metaflow_stubs-6.0.3.155rc0.dist-info}/top_level.txt +0 -0
metaflow-stubs/cards.pyi CHANGED
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.763188 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.379875 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
metaflow-stubs/cli.pyi CHANGED
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.777487 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.394319 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.776296 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.393112 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.802295 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.419394 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.766807 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.382886 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,19 +1,19 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.771212 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.387304 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
8
8
 
9
- import typing
10
9
  import metaflow
10
+ import typing
11
11
  if typing.TYPE_CHECKING:
12
12
  import metaflow.client.core
13
13
  import typing
14
+ import tarfile
14
15
  import metaflow.events
15
16
  import tempfile
16
- import tarfile
17
17
  import datetime
18
18
 
19
19
  from ..metaflow_current import current as current
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.797361 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.414449 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
metaflow-stubs/events.pyi CHANGED
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.763800 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.379456 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.752898 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.371622 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,19 +1,19 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.760211 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.376345 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
8
8
 
9
- import typing
10
9
  import metaflow
10
+ import typing
11
11
  if typing.TYPE_CHECKING:
12
- import metaflow.exception
13
12
  import metaflow.flowspec
14
- import typing
13
+ import metaflow.exception
15
14
  import metaflow.unbounded_foreach
16
15
  import metaflow.datastore.inputs
16
+ import typing
17
17
 
18
18
  from . import parameters as parameters
19
19
  from .parameters import DelayedEvaluationParameter as DelayedEvaluationParameter
@@ -1 +1 @@
1
- 2.15.7.1+obcheckpoint(0.1.9);ob(v1) 2025-03-25T18:39:51.747272
1
+ 2.15.7.2+obcheckpoint(0.2.0);ob(v1) 2025-04-14T19:55:43.368024
@@ -1,17 +1,17 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.766150 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.382241 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
8
8
 
9
- import typing
10
9
  import metaflow
10
+ import typing
11
11
  if typing.TYPE_CHECKING:
12
12
  import metaflow.parameters
13
- import typing
14
13
  import metaflow._vendor.click.types
14
+ import typing
15
15
 
16
16
  from ._vendor import click as click
17
17
  from .exception import MetaflowException as MetaflowException
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.751497 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.370799 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.758920 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.375211 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.781777 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.398668 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,13 +1,13 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.781284 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.398179 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
8
8
 
9
- import typing
10
9
  import metaflow
10
+ import typing
11
11
  if typing.TYPE_CHECKING:
12
12
  import metaflow.metadata_provider.metadata
13
13
 
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.781503 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.398398 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.755008 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.372777 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,21 +1,21 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.894130 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.557973 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
8
8
 
9
9
  import typing
10
10
  if typing.TYPE_CHECKING:
11
- import metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.checkpoints.decorator
12
11
  import metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.modeling_utils.core
13
- import typing
14
12
  import metaflow
15
- import metaflow.events
16
- import metaflow.plugins.cards.component_serializer
13
+ import typing
17
14
  import metaflow.metaflow_current
15
+ import metaflow.events
18
16
  import metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.hf_hub.decorator
17
+ import metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.checkpoints.decorator
18
+ import metaflow.plugins.cards.component_serializer
19
19
 
20
20
 
21
21
  TYPE_CHECKING: bool
@@ -228,85 +228,6 @@ class Current(object, metaclass=type):
228
228
  def graph(self):
229
229
  ...
230
230
  @property
231
- def card(self) -> "metaflow.plugins.cards.component_serializer.CardComponentCollector":
232
- """
233
- (only in the presence of the @card decorator)
234
-
235
- The `@card` decorator makes the cards available through the `current.card`
236
- object. If multiple `@card` decorators are present, you can add an `ID` to
237
- distinguish between them using `@card(id=ID)` as the decorator. You will then
238
- be able to access that specific card using `current.card[ID].
239
-
240
- Methods available are `append` and `extend`
241
-
242
- Returns
243
- -------
244
- CardComponentCollector
245
- The or one of the cards attached to this step.
246
- """
247
- ...
248
- @property
249
- def checkpoint(self) -> "metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.checkpoints.decorator.CurrentCheckpointer":
250
- """
251
- (only in the presence of the @checkpoint decorator)
252
-
253
- The `@checkpoint` decorator makes saving/loading checkpoints available through the `current.checkpoint`.
254
- The object exposes `save`/`load`/`list` methods for saving/loading checkpoints.
255
-
256
- You can check if a checkpoint is loaded by `current.checkpoint.is_loaded` and get the checkpoint information
257
- by using `current.checkpoint.info`. The `current.checkpoint.directory` returns the path to the checkpoint directory
258
- where the checkpoint maybe loaded or saved.
259
-
260
- Usage (Saving Checkpoints):
261
- -------
262
- ```
263
- @checkpoint
264
- @step
265
- def train(self):
266
- model = create_model(self.parameters, checkpoint_path = None)
267
- for i in range(self.epochs):
268
- # some training logic
269
- loss = model.train(self.dataset)
270
- if i % 10 == 0:
271
- model.save(
272
- current.checkpoint.directory,
273
- )
274
- # saves the contents of the `current.checkpoint.directory` as a checkpoint
275
- # and returns a reference dictionary to the checkpoint saved in the datastore
276
- self.latest_checkpoint = current.checkpoint.save(
277
- name="epoch_checkpoint",
278
- metadata={
279
- "epoch": i,
280
- "loss": loss,
281
- }
282
- )
283
- ```
284
- Usage (Using Loaded Checkpoints):
285
- -------
286
- ```
287
- @retry(times=3)
288
- @checkpoint
289
- @step
290
- def train(self):
291
- # Assume that the task has restarted and the previous attempt of the task
292
- # saved a checkpoint
293
- checkpoint_path = None
294
- if current.checkpoint.is_loaded: # Check if a checkpoint is loaded
295
- print("Loaded checkpoint from the previous attempt")
296
- checkpoint_path = current.checkpoint.directory
297
-
298
- model = create_model(self.parameters, checkpoint_path = checkpoint_path)
299
- for i in range(self.epochs):
300
- ...
301
- ```
302
-
303
- Returns
304
- -------
305
- CurrentCheckpointer
306
- The object for handling checkpointing within a step.
307
- """
308
- ...
309
- @property
310
231
  def huggingface_hub(self) -> "metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.hf_hub.decorator.HuggingfaceRegistry":
311
232
  """
312
233
  (only in the presence of the @huggingface_hub decorator)
@@ -466,6 +387,98 @@ class Current(object, metaclass=type):
466
387
  """
467
388
  ...
468
389
  @property
390
+ def card(self) -> "metaflow.plugins.cards.component_serializer.CardComponentCollector":
391
+ """
392
+ (only in the presence of the @card decorator)
393
+
394
+ The `@card` decorator makes the cards available through the `current.card`
395
+ object. If multiple `@card` decorators are present, you can add an `ID` to
396
+ distinguish between them using `@card(id=ID)` as the decorator. You will then
397
+ be able to access that specific card using `current.card[ID].
398
+
399
+ Methods available are `append` and `extend`
400
+
401
+ Returns
402
+ -------
403
+ CardComponentCollector
404
+ The or one of the cards attached to this step.
405
+ """
406
+ ...
407
+ @property
408
+ def checkpoint(self) -> "metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.checkpoints.decorator.CurrentCheckpointer":
409
+ """
410
+ (only in the presence of the @checkpoint decorator)
411
+
412
+ The `@checkpoint` decorator makes saving/loading checkpoints available through the `current.checkpoint`.
413
+ The object exposes `save`/`load`/`list` methods for saving/loading checkpoints.
414
+
415
+ You can check if a checkpoint is loaded by `current.checkpoint.is_loaded` and get the checkpoint information
416
+ by using `current.checkpoint.info`. The `current.checkpoint.directory` returns the path to the checkpoint directory
417
+ where the checkpoint maybe loaded or saved.
418
+
419
+ Usage (Saving Checkpoints):
420
+ -------
421
+ ```
422
+ @checkpoint
423
+ @step
424
+ def train(self):
425
+ model = create_model(self.parameters, checkpoint_path = None)
426
+ for i in range(self.epochs):
427
+ # some training logic
428
+ loss = model.train(self.dataset)
429
+ if i % 10 == 0:
430
+ model.save(
431
+ current.checkpoint.directory,
432
+ )
433
+ # saves the contents of the `current.checkpoint.directory` as a checkpoint
434
+ # and returns a reference dictionary to the checkpoint saved in the datastore
435
+ self.latest_checkpoint = current.checkpoint.save(
436
+ name="epoch_checkpoint",
437
+ metadata={
438
+ "epoch": i,
439
+ "loss": loss,
440
+ }
441
+ )
442
+ ```
443
+ Usage (Using Loaded Checkpoints):
444
+ -------
445
+ ```
446
+ @retry(times=3)
447
+ @checkpoint
448
+ @step
449
+ def train(self):
450
+ # Assume that the task has restarted and the previous attempt of the task
451
+ # saved a checkpoint
452
+ checkpoint_path = None
453
+ if current.checkpoint.is_loaded: # Check if a checkpoint is loaded
454
+ print("Loaded checkpoint from the previous attempt")
455
+ checkpoint_path = current.checkpoint.directory
456
+
457
+ model = create_model(self.parameters, checkpoint_path = checkpoint_path)
458
+ for i in range(self.epochs):
459
+ ...
460
+ ```
461
+
462
+ Returns
463
+ -------
464
+ CurrentCheckpointer
465
+ The object for handling checkpointing within a step.
466
+ """
467
+ ...
468
+ @property
469
+ def trigger(self) -> "metaflow.events.Trigger":
470
+ """
471
+ (only in the presence of the @trigger, or @trigger_on_finish decorators)
472
+
473
+ Returns `Trigger` if the current run is triggered by an event
474
+
475
+ Returns
476
+ -------
477
+ Trigger
478
+ `Trigger` if triggered by an event
479
+ """
480
+ ...
481
+ @property
469
482
  def project_name(self) -> str:
470
483
  """
471
484
  (only in the presence of the @project decorator)
@@ -532,19 +545,6 @@ class Current(object, metaclass=type):
532
545
  True if the flow is deployed with `--production`.
533
546
  """
534
547
  ...
535
- @property
536
- def trigger(self) -> "metaflow.events.Trigger":
537
- """
538
- (only in the presence of the @trigger_on_finish, or @trigger decorators)
539
-
540
- Returns `Trigger` if the current run is triggered by an event
541
-
542
- Returns
543
- -------
544
- Trigger
545
- `Trigger` if triggered by an event
546
- """
547
- ...
548
548
  ...
549
549
 
550
550
  current: Current
@@ -1,6 +1,6 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.765045 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.381144 #
5
5
  ######################################################################################################
6
6
 
@@ -1,6 +1,6 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.774066 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.390188 #
5
5
  ######################################################################################################
6
6
 
@@ -1,6 +1,6 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.774125 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.390246 #
5
5
  ######################################################################################################
6
6
 
@@ -1,6 +1,6 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.774184 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.390300 #
5
5
  ######################################################################################################
6
6
 
@@ -1,6 +1,6 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.826654 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.450644 #
5
5
  ######################################################################################################
6
6
 
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.827262 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.451699 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -9,8 +9,8 @@ from __future__ import annotations
9
9
  import threading
10
10
  import typing
11
11
  if typing.TYPE_CHECKING:
12
- import threading
13
12
  import metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.card_utils.async_cards
13
+ import threading
14
14
 
15
15
  from ......metaflow_current import current as current
16
16
 
@@ -1,7 +1,7 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.826705 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.450738 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
@@ -1,13 +1,13 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.866215 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.522708 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
8
8
 
9
- import typing
10
9
  import metaflow
10
+ import typing
11
11
  if typing.TYPE_CHECKING:
12
12
  import metaflow.plugins.cards.card_modules.components
13
13
  import metaflow.plugins.cards.card_modules.card
@@ -1,6 +1,6 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.774239 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.390352 #
5
5
  ######################################################################################################
6
6
 
@@ -1,6 +1,6 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.828036 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.453173 #
5
5
  ######################################################################################################
6
6
 
@@ -1,18 +1,18 @@
1
1
  ######################################################################################################
2
2
  # Auto-generated Metaflow stub file #
3
- # MF version: 2.15.7.1+obcheckpoint(0.1.9);ob(v1) #
4
- # Generated on 2025-03-25T18:39:51.828082 #
3
+ # MF version: 2.15.7.2+obcheckpoint(0.2.0);ob(v1) #
4
+ # Generated on 2025-04-14T19:55:43.453263 #
5
5
  ######################################################################################################
6
6
 
7
7
  from __future__ import annotations
8
8
 
9
- import typing
10
9
  import metaflow
11
10
  import threading
11
+ import typing
12
12
  if typing.TYPE_CHECKING:
13
- import metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.datastructures
14
13
  import threading
15
14
  import metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.card_utils.async_cards
15
+ import metaflow.mf_extensions.obcheckpoint.plugins.machine_learning_utilities.datastructures
16
16
 
17
17
  from ...card_utils.deco_injection_mixin import CardDecoratorInjector as CardDecoratorInjector
18
18
  from ...card_utils.async_cards import CardRefresher as CardRefresher