metaflow 2.8.1__py2.py3-none-any.whl → 2.8.3__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.
- metaflow/client/core.py +14 -4
- metaflow/cmd/configure_cmd.py +3 -3
- metaflow/cmd/main_cli.py +9 -14
- metaflow/current.py +15 -0
- metaflow/datastore/datastore_set.py +7 -7
- metaflow/datastore/flow_datastore.py +1 -2
- metaflow/extension_support/__init__.py +1 -0
- metaflow/extension_support/integrations.py +141 -0
- metaflow/integrations.py +29 -0
- metaflow/metaflow_config.py +21 -0
- metaflow/metaflow_environment.py +5 -4
- metaflow/package.py +1 -1
- metaflow/plugins/airflow/airflow.py +0 -1
- metaflow/plugins/argo/argo_workflows.py +2 -0
- metaflow/plugins/argo/argo_workflows_cli.py +11 -1
- metaflow/plugins/aws/aws_utils.py +6 -1
- metaflow/plugins/aws/batch/batch.py +30 -8
- metaflow/plugins/aws/batch/batch_cli.py +12 -0
- metaflow/plugins/aws/batch/batch_client.py +39 -2
- metaflow/plugins/aws/batch/batch_decorator.py +23 -0
- metaflow/plugins/aws/step_functions/step_functions.py +7 -4
- metaflow/plugins/aws/step_functions/step_functions_cli.py +11 -1
- metaflow/plugins/cards/card_modules/bundle.css +56 -56
- metaflow/plugins/cards/card_modules/convert_to_native_type.py +67 -5
- metaflow/plugins/cards/card_modules/main.js +14 -7
- metaflow/plugins/conda/conda_environment.py +2 -2
- metaflow/plugins/conda/conda_step_decorator.py +7 -1
- metaflow/plugins/datatools/s3/s3.py +2 -2
- metaflow/plugins/env_escape/communication/channel.py +1 -1
- metaflow/plugins/kubernetes/kubernetes.py +4 -0
- metaflow/plugins/kubernetes/kubernetes_decorator.py +6 -2
- metaflow/plugins/kubernetes/kubernetes_job.py +17 -2
- metaflow/plugins/metadata/service.py +3 -2
- metaflow/runtime.py +5 -3
- metaflow/tutorials/02-statistics/README.md +4 -9
- metaflow/tutorials/02-statistics/stats.py +38 -11
- metaflow/tutorials/03-playlist-redux/playlist.py +24 -16
- metaflow/tutorials/04-playlist-plus/playlist.py +14 -23
- metaflow/tutorials/05-hello-cloud/README.md +45 -0
- metaflow/tutorials/{05-helloaws/helloaws.ipynb → 05-hello-cloud/hello-cloud.ipynb} +10 -5
- metaflow/tutorials/{05-helloaws/helloaws.py → 05-hello-cloud/hello-cloud.py} +11 -13
- metaflow/tutorials/06-statistics-redux/README.md +6 -29
- metaflow/tutorials/06-statistics-redux/stats.ipynb +2 -2
- metaflow/tutorials/07-worldview/README.md +3 -11
- metaflow/tutorials/07-worldview/worldview.ipynb +3 -3
- metaflow/tutorials/08-autopilot/README.md +10 -17
- metaflow/tutorials/08-autopilot/autopilot.ipynb +12 -7
- {metaflow-2.8.1.dist-info → metaflow-2.8.3.dist-info}/METADATA +1 -6
- {metaflow-2.8.1.dist-info → metaflow-2.8.3.dist-info}/RECORD +53 -51
- metaflow/tutorials/05-helloaws/README.md +0 -27
- {metaflow-2.8.1.dist-info → metaflow-2.8.3.dist-info}/LICENSE +0 -0
- {metaflow-2.8.1.dist-info → metaflow-2.8.3.dist-info}/WHEEL +0 -0
- {metaflow-2.8.1.dist-info → metaflow-2.8.3.dist-info}/entry_points.txt +0 -0
- {metaflow-2.8.1.dist-info → metaflow-2.8.3.dist-info}/top_level.txt +0 -0
@@ -4,18 +4,10 @@
|
|
4
4
|
monitor all of your Metaflow flows.**
|
5
5
|
|
6
6
|
#### Showcasing:
|
7
|
-
- The
|
7
|
+
- The Metaflow client API.
|
8
8
|
|
9
9
|
#### Before playing this episode:
|
10
|
-
1. ```python -m pip install notebook```
|
11
|
-
2. This tutorial requires access to compute and storage resources on AWS, which
|
12
|
-
can be configured by
|
13
|
-
1. Following the instructions at
|
14
|
-
https://docs.metaflow.org/metaflow-on-aws/deploy-to-aws or
|
15
|
-
2. Requesting a sandbox at
|
16
|
-
https://docs.metaflow.org/metaflow-on-aws/metaflow-sandbox
|
10
|
+
1. ```python -m pip install notebook``` (only locally, if you don't have it already)
|
17
11
|
|
18
12
|
#### To play this episode:
|
19
|
-
1. ```
|
20
|
-
2. ```jupyter-notebook 07-worldview/worldview.ipynb```
|
21
|
-
3. Open 'worldview.ipynb' in your remote Sagemaker notebook
|
13
|
+
1. Open ```07-worldview/worldview.ipynb```
|
@@ -51,7 +51,7 @@
|
|
51
51
|
"cell_type": "markdown",
|
52
52
|
"metadata": {},
|
53
53
|
"source": [
|
54
|
-
"## Give some detailed information on
|
54
|
+
"## Give some detailed information on HelloCloudFlow"
|
55
55
|
]
|
56
56
|
},
|
57
57
|
{
|
@@ -64,9 +64,9 @@
|
|
64
64
|
"\n",
|
65
65
|
"# Set namespace to None to search over all namespaces\n",
|
66
66
|
"namespace(None)\n",
|
67
|
-
"flow = Flow('
|
67
|
+
"flow = Flow('HelloCloudFlow')\n",
|
68
68
|
"runs = list(flow.runs())\n",
|
69
|
-
"print(\"
|
69
|
+
"print(\"HelloCloudFlow:\")\n",
|
70
70
|
"for run in runs:\n",
|
71
71
|
" print(\"Run id: {}, Successful: {}\".format(run.id, run.successful))\n",
|
72
72
|
" print(\"Tags: {}\\n\".format(sorted(list(run.tags))))"
|
@@ -1,27 +1,20 @@
|
|
1
1
|
# Episode 08-autopilot: Scheduling Compute in the Cloud.
|
2
2
|
|
3
|
-
**This example revisits 'Episode 06-statistics-redux: Computing in the Cloud'.
|
3
|
+
**This example revisits 'Episode 06-statistics-redux: Computing in the Cloud'.
|
4
4
|
With Metaflow, you don't need to make any code changes to schedule your flow
|
5
5
|
in the cloud. In this example we will schedule the 'stats.py' workflow
|
6
|
-
using the '
|
7
|
-
Metaflow to schedule your flow on
|
8
|
-
You can execute your flow on
|
9
|
-
'step-functions trigger' command line argument. You can use a notebook to
|
6
|
+
using the 'argo-workflows create' command line argument. This instructs
|
7
|
+
Metaflow to schedule your flow on Argo Workflows without changing any code.
|
8
|
+
You can execute your flow on Argo Workflows by using the
|
9
|
+
'step-functions trigger' command line argument. You can use a notebook to setup
|
10
10
|
a simple dashboard to monitor all of your Metaflow flows.**
|
11
11
|
|
12
12
|
#### Showcasing:
|
13
|
-
- '
|
14
|
-
- '
|
13
|
+
- 'argo-workflows create' command line option
|
14
|
+
- 'argo-workflows trigger' command line option
|
15
15
|
- Accessing data locally or remotely through the Metaflow Client API
|
16
16
|
|
17
|
-
#### Before playing this episode:
|
18
|
-
1. Configure your sandbox: https://docs.metaflow.org/metaflow-on-aws/metaflow-sandbox
|
19
|
-
2. ```python -m pip install plotly```
|
20
|
-
3. ```python -m pip install notebook```
|
21
|
-
|
22
17
|
#### To play this episode:
|
23
|
-
1. ```
|
24
|
-
2. ```python 02-statistics/stats.py
|
25
|
-
3. ```
|
26
|
-
4. ```jupyter-notebook 08-autopilot/autopilot.ipynb```
|
27
|
-
5. Open 'autopilot.ipynb' in your remote Sagemaker notebook
|
18
|
+
1. ```python 02-statistics/stats.py --with kubernetes argo-workflows create --max-workers 4```
|
19
|
+
2. ```python 02-statistics/stats.py argo-workflows trigger ```
|
20
|
+
3. Open ```08-autopilot/autopilot.ipynb```
|
@@ -43,15 +43,15 @@
|
|
43
43
|
"metadata": {},
|
44
44
|
"outputs": [],
|
45
45
|
"source": [
|
46
|
-
"# When you triggered your flow on
|
46
|
+
"# When you triggered your flow on Argo Workflows using `argo-workflows trigger`, you would have\n",
|
47
47
|
"# seen an output similar to - \n",
|
48
48
|
"#\n",
|
49
49
|
"# ...\n",
|
50
|
-
"# Workflow MovieStatsFlow triggered on
|
50
|
+
"# Workflow MovieStatsFlow triggered on Argo Workflows (run-id argo-moviestatsflow-68z2h).\n",
|
51
51
|
"# ...\n",
|
52
52
|
"#\n",
|
53
|
-
"# Paste the run-id below (run_id = '
|
54
|
-
"run_id = '
|
53
|
+
"# Paste the run-id below (run_id = 'argo-moviestatsflow-68z2h').\n",
|
54
|
+
"run_id = 'argo-moviestatsflow-68z2h'\n",
|
55
55
|
"\n",
|
56
56
|
"flow_name = 'MovieStatsFlow'\n",
|
57
57
|
"\n",
|
@@ -59,7 +59,7 @@
|
|
59
59
|
" run = Flow(flow_name)[run_id]\n",
|
60
60
|
"except KeyError:\n",
|
61
61
|
" print('The run %s for flow %s might not have started yet. \\nThis can happen '\n",
|
62
|
-
" 'when the underlying
|
62
|
+
" 'when the underlying Kubernetes resources are not immediately available. '\n",
|
63
63
|
" '\\nPlease wait for a few moments before trying again or check the run_id '\n",
|
64
64
|
" 'for any typos.' % (run_id, flow_name))\n"
|
65
65
|
]
|
@@ -93,7 +93,7 @@
|
|
93
93
|
],
|
94
94
|
"metadata": {
|
95
95
|
"kernelspec": {
|
96
|
-
"display_name": "Python 3",
|
96
|
+
"display_name": "Python 3 (ipykernel)",
|
97
97
|
"language": "python",
|
98
98
|
"name": "python3"
|
99
99
|
},
|
@@ -107,7 +107,12 @@
|
|
107
107
|
"name": "python",
|
108
108
|
"nbconvert_exporter": "python",
|
109
109
|
"pygments_lexer": "ipython3",
|
110
|
-
"version": "3.
|
110
|
+
"version": "3.11.0"
|
111
|
+
},
|
112
|
+
"vscode": {
|
113
|
+
"interpreter": {
|
114
|
+
"hash": "cbace4de36374f781ecaccc0b57d4ee2b1a52041cc1bae18e5a9fa121ff274d3"
|
115
|
+
}
|
111
116
|
}
|
112
117
|
},
|
113
118
|
"nbformat": 4,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: metaflow
|
3
|
-
Version: 2.8.
|
3
|
+
Version: 2.8.3
|
4
4
|
Summary: Metaflow: More Data Science, Less Engineering
|
5
5
|
Author: Metaflow Developers
|
6
6
|
Author-email: help@metaflow.org
|
@@ -76,8 +76,3 @@ There are several ways to get in touch with us:
|
|
76
76
|
## Contributing
|
77
77
|
|
78
78
|
We welcome contributions to Metaflow. Please see our [contribution guide](https://docs.metaflow.org/introduction/contributing-to-metaflow) for more details.
|
79
|
-
|
80
|
-
### Code style
|
81
|
-
|
82
|
-
We use [black](https://black.readthedocs.io/en/stable/) as a code formatter. The easiest way to ensure your commits are always formatted with the correct version of `black` it is to use [pre-commit](https://pre-commit.com/): install it and then run `pre-commit install` once in your local copy of the repo.
|
83
|
-
|
@@ -4,7 +4,7 @@ metaflow/cards.py,sha256=YM-ZAntXrt05dWWr5E1knhwXP82E36kT-cTVWLOrsvg,394
|
|
4
4
|
metaflow/cli.py,sha256=skd-ARvBrXr3k5p11QYMoCGZCgxWRheOV2WcME8jFd8,35024
|
5
5
|
metaflow/cli_args.py,sha256=lcgBGNTvfaiPxiUnejAe60Upt9swG6lRy1_3OqbU6MY,2616
|
6
6
|
metaflow/cmd_with_io.py,sha256=kl53HkAIyv0ecpItv08wZYczv7u3msD1VCcciqigqf0,588
|
7
|
-
metaflow/current.py,sha256=
|
7
|
+
metaflow/current.py,sha256=7xigMvkVwczP6mXTZ2lJzTepeFI2cv-ZL3i_odOwebw,6106
|
8
8
|
metaflow/debug.py,sha256=HEmt_16tJtqHXQXsqD9pqOFe3CWR5GZ7VwpaYQgnRdU,1466
|
9
9
|
metaflow/decorators.py,sha256=Yrr6Tr_d_f0Z_MKVTOLhrwPB0KS8B3BXl_3vHRLgN2E,19860
|
10
10
|
metaflow/event_logger.py,sha256=joTVRqZPL87nvah4ZOwtqWX8NeraM_CXKXXGVpKGD8o,780
|
@@ -12,20 +12,21 @@ metaflow/exception.py,sha256=v-oIjBM9-srGlPx2SkelSb32Y-7TnyCI-dF-KAMN_DM,4779
|
|
12
12
|
metaflow/flowspec.py,sha256=M-6d01vUIdvnNIcy2_pfBXz4dfkvaFLl1E5Tx_1BlNw,25140
|
13
13
|
metaflow/graph.py,sha256=ZPxyG8uwVMk5YYgX4pQEQaPZtZM5Wy-G4NtJK73IEuA,11818
|
14
14
|
metaflow/includefile.py,sha256=ulrQ03CZcKCEL_dTP46Yk0_NF6XRIOEBp1u_Ud5D0jg,19546
|
15
|
+
metaflow/integrations.py,sha256=EEgR76LW5x3UwE0hKME6MMcgGUXvL-3u0Hv9AB45e-E,1402
|
15
16
|
metaflow/lint.py,sha256=_kYAbAtsP7IG1Rd0FqNbo8I8Zs66_0WXbaZJFARO3dE,10394
|
16
|
-
metaflow/metaflow_config.py,sha256=
|
17
|
+
metaflow/metaflow_config.py,sha256=gapuBV9Itp8b7AIavBWWN7Jqh1ZafsicapWHcdRGhUs,17830
|
17
18
|
metaflow/metaflow_config_funcs.py,sha256=DpCpdVV-pfaAitWMurQdunbnRRtO38zNDel8riWRI1Q,4309
|
18
|
-
metaflow/metaflow_environment.py,sha256=
|
19
|
+
metaflow/metaflow_environment.py,sha256=2nzo9gyixcH74djRZm3ifDzO_xEKSaA1dOfsVOXSFoo,7279
|
19
20
|
metaflow/metaflow_profile.py,sha256=jKPEW-hmAQO-htSxb9hXaeloLacAh41A35rMZH6G8pA,418
|
20
21
|
metaflow/metaflow_version.py,sha256=mPQ6g_3XjNdi0NrxDzwlW8ZH0nMyYpwqmJ04P7TIdP0,4774
|
21
22
|
metaflow/monitor.py,sha256=LSY-NDWmEhx7B_Afo0cLh2QX9esJa73p6F6pmdwCpbk,5297
|
22
23
|
metaflow/multicore_utils.py,sha256=mjPdHZbw6SQFwdPNAiOtxHcai8sywiYmuo7z3HF4MUI,2604
|
23
|
-
metaflow/package.py,sha256=
|
24
|
+
metaflow/package.py,sha256=YWoMEISA0vylYwEWzwTlxjQPcfNKnnftDJJ4-v54Zbo,7182
|
24
25
|
metaflow/parameters.py,sha256=d_op5psX6yAx-2demD-lffW8HJyiWu_Ft2HgvxuBUWw,13765
|
25
26
|
metaflow/procpoll.py,sha256=22ppTUyaTYVn1UUG4RNG1LnCKBwRbaTmhYiYN_7OVN8,2861
|
26
27
|
metaflow/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
28
|
metaflow/pylint_wrapper.py,sha256=zzBY9YaSUZOGH-ypDKAv2B_7XcoyMZj-zCoCrmYqNRc,2865
|
28
|
-
metaflow/runtime.py,sha256=
|
29
|
+
metaflow/runtime.py,sha256=1f4eccZh8efO77Wmgf7Y2XiB_poB19uc6-e7Sz8oeH8,55788
|
29
30
|
metaflow/tagging_util.py,sha256=ctyf0Q1gBi0RyZX6J0e9DQGNkNHblV_CITfy66axXB4,2346
|
30
31
|
metaflow/task.py,sha256=pO8NxA-FZvQ2w-Stu2sF52WSYZAMWBBXcca2BLCccQU,25123
|
31
32
|
metaflow/unbounded_foreach.py,sha256=p184WMbrMJ3xKYHwewj27ZhRUsSj_kw1jlye5gA9xJk,387
|
@@ -65,24 +66,25 @@ metaflow/_vendor/v3_6/importlib_metadata/_itertools.py,sha256=cvr_2v8BRbxcIl5x5l
|
|
65
66
|
metaflow/_vendor/v3_6/importlib_metadata/_meta.py,sha256=_F48Hu_jFxkfKWz5wcYS8vO23qEygbVdF9r-6qh-hjE,1154
|
66
67
|
metaflow/_vendor/v3_6/importlib_metadata/_text.py,sha256=HCsFksZpJLeTP3NEk_ngrAeXVRRtTrtyh9eOABoRP4A,2166
|
67
68
|
metaflow/client/__init__.py,sha256=1GtQB4Y_CBkzaxg32L1syNQSlfj762wmLrfrDxGi1b8,226
|
68
|
-
metaflow/client/core.py,sha256=
|
69
|
+
metaflow/client/core.py,sha256=C5g5RghHzPlynZSno0JNub6csfyogCC58Ul3VAHDM-4,63753
|
69
70
|
metaflow/client/filecache.py,sha256=QdD1sW6w4Nnza-ioz4I1fEZI843X33AFIV3eSxq-cuU,14868
|
70
71
|
metaflow/cmd/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
71
|
-
metaflow/cmd/configure_cmd.py,sha256=
|
72
|
-
metaflow/cmd/main_cli.py,sha256=
|
72
|
+
metaflow/cmd/configure_cmd.py,sha256=lcmZAl3p2jO-UqeufMAlUvvUJcVdi3F55VJqbVS42Fg,31039
|
73
|
+
metaflow/cmd/main_cli.py,sha256=6WIteupxXLqtNOMyBjf6j7cPetFOx_F1b9aCCNgeWvg,2835
|
73
74
|
metaflow/cmd/tutorials_cmd.py,sha256=8FdlKkicTOhCIDKcBR5b0Oz6giDvS-EMY3o9skIrRqw,5156
|
74
75
|
metaflow/cmd/util.py,sha256=jS_0rUjOnGGzPT65fzRLdGjrYAOOLA4jU2S0HJLV0oc,406
|
75
76
|
metaflow/datastore/__init__.py,sha256=VxP6ddJt3rwiCkpiSfAhyVkUCOe1pgZZsytVEJzFmSQ,155
|
76
77
|
metaflow/datastore/content_addressed_store.py,sha256=dCVFAr4PltlmXNVVYt7UaBGJWe6fWuicCgb68XHqLrA,7643
|
77
|
-
metaflow/datastore/datastore_set.py,sha256=
|
78
|
+
metaflow/datastore/datastore_set.py,sha256=sjwcxO6ZJgZ7ief_L-TTpjoRJYIlJnGGG_WSaDRij28,2368
|
78
79
|
metaflow/datastore/datastore_storage.py,sha256=7V43QuiWDQ_Q4oHw9y7Z7X9lYj3GI-LV1-xB3d2Tt5k,9038
|
79
80
|
metaflow/datastore/exceptions.py,sha256=r7Ab5FvHIzyFh6kwiptA1lO5nLqWg0xRBoeYGefvapA,373
|
80
|
-
metaflow/datastore/flow_datastore.py,sha256=
|
81
|
+
metaflow/datastore/flow_datastore.py,sha256=ZG1fguspPxgFwKKJj4dHLgZl3ZdfZJDb19EWP2VlRJQ,9183
|
81
82
|
metaflow/datastore/inputs.py,sha256=i43dXr2xvgtsgKMO9allgCR18bk80GeayeQFyUTH36w,449
|
82
83
|
metaflow/datastore/task_datastore.py,sha256=aqu68A2ezS2RschhxdX4O82ofML3J6UPwYWbgo-01G8,34312
|
83
|
-
metaflow/extension_support/__init__.py,sha256=
|
84
|
+
metaflow/extension_support/__init__.py,sha256=_PzPwsqoJ4DyG54cfDVws3ep-UjkFntYLmlsMYKedrc,49295
|
84
85
|
metaflow/extension_support/_empty_file.py,sha256=HENjnM4uAfeNygxMB_feCCWORFoSat9n_QwzSx2oXPw,109
|
85
86
|
metaflow/extension_support/cmd.py,sha256=hk8iBUUINqvKCDxInKgWpum8ThiRZtHSJP7qBASHzl8,5711
|
87
|
+
metaflow/extension_support/integrations.py,sha256=AWAh-AZ-vo9IxuAVEjGw3s8p_NMm2DKHYx10oC51gPU,5506
|
86
88
|
metaflow/extension_support/plugins.py,sha256=jn5e9fmcwpukUlXeCCPtoCAXjECRuZzXIhvwuAKPOJ0,10683
|
87
89
|
metaflow/metadata/__init__.py,sha256=FZNSnz26VB_m18DQG8mup6-Gfl7r1U6lRMljJBp3VAM,64
|
88
90
|
metaflow/metadata/heartbeat.py,sha256=gv5R4vAw-IHMos2b3yelHoGu4uiA8pRpAMPBJbchOdc,2386
|
@@ -108,7 +110,7 @@ metaflow/plugins/tag_cli.py,sha256=xXlhv6Y9kU0BHvNWntQ9QoG6swBVww-FzrpeFt_m_98,1
|
|
108
110
|
metaflow/plugins/test_unbounded_foreach_decorator.py,sha256=cB_2OWb38eYfmbVck72ZwU0qgzi6hqJXZAxglpHU_qg,5216
|
109
111
|
metaflow/plugins/timeout_decorator.py,sha256=9aAMualSW1AzUV--tmkGR5rxQ_dBZIWtCKXbQ1_Pt9A,3598
|
110
112
|
metaflow/plugins/airflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
|
-
metaflow/plugins/airflow/airflow.py,sha256=
|
113
|
+
metaflow/plugins/airflow/airflow.py,sha256=YUhvboQE3aJ1mnP6XsVKdAM4z-AEeVNr_UrBpGIe5Dg,30229
|
112
114
|
metaflow/plugins/airflow/airflow_cli.py,sha256=mvqrUWBW5Ty6MIhEXIDNSqCHU_YpQuIJw6UY6uTdU1o,14429
|
113
115
|
metaflow/plugins/airflow/airflow_decorator.py,sha256=H9-QnRP4x8tSomLmmpGeuVUI48-CxHR7tlvn_ceX1Zs,1772
|
114
116
|
metaflow/plugins/airflow/airflow_utils.py,sha256=qd6lV2X4VpCO2sLsRc35JMOU4DVz_tQacrM_wWNkQug,28865
|
@@ -122,18 +124,18 @@ metaflow/plugins/airflow/sensors/external_task_sensor.py,sha256=GAWfc2GJqSSAKOJy
|
|
122
124
|
metaflow/plugins/airflow/sensors/s3_sensor.py,sha256=zym4mUm_f_gBsvHHVqGtX_OOxRjM3WG217gaT-XDBnk,3274
|
123
125
|
metaflow/plugins/argo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
124
126
|
metaflow/plugins/argo/argo_client.py,sha256=xPNWFw_OvYD8G1NUcLfLbFGwxaFx2OQ4NbM1h5NIwos,6818
|
125
|
-
metaflow/plugins/argo/argo_workflows.py,sha256=
|
126
|
-
metaflow/plugins/argo/argo_workflows_cli.py,sha256=
|
127
|
+
metaflow/plugins/argo/argo_workflows.py,sha256=60l0EiU2xezruwd0Kei-ZtBYz0jh6rWPTC9-yVukx2w,58089
|
128
|
+
metaflow/plugins/argo/argo_workflows_cli.py,sha256=5n9F1BSgP9z7R-qZqUeN1Gso1Oh2TomgJ1ukAobMNgg,17737
|
127
129
|
metaflow/plugins/argo/argo_workflows_decorator.py,sha256=5JS5_gFEPtGz3ZQSwkL1zoChqY1Hk4YPlExf33e5eSw,2395
|
128
130
|
metaflow/plugins/argo/process_input_paths.py,sha256=BYo8eykdPEG8Zyt_aWH92uWNb1gicX_0KfLWK4mUfNs,555
|
129
131
|
metaflow/plugins/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
130
132
|
metaflow/plugins/aws/aws_client.py,sha256=mO8UD6pxFaOnxDb3hTP3HB7Gqb_ZxoR-76LT683WHvI,4036
|
131
|
-
metaflow/plugins/aws/aws_utils.py,sha256=
|
133
|
+
metaflow/plugins/aws/aws_utils.py,sha256=K_rs3VYUEl1Wx31vh3782kBCJT6xajq0A6tjuavkgr0,5803
|
132
134
|
metaflow/plugins/aws/batch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
133
|
-
metaflow/plugins/aws/batch/batch.py,sha256=
|
134
|
-
metaflow/plugins/aws/batch/batch_cli.py,sha256=
|
135
|
-
metaflow/plugins/aws/batch/batch_client.py,sha256=
|
136
|
-
metaflow/plugins/aws/batch/batch_decorator.py,sha256=
|
135
|
+
metaflow/plugins/aws/batch/batch.py,sha256=nvHT6MlsFv86R2IcIE4sAt80if07G98ggFY4xpTDmbY,16118
|
136
|
+
metaflow/plugins/aws/batch/batch_cli.py,sha256=jprzV_wdb0GcwxVNpDxKAfHfeYJlB1D5BrRDosqlQQo,10758
|
137
|
+
metaflow/plugins/aws/batch/batch_client.py,sha256=xF1TYbItGECKrh3amCcvqUyavgZ4cjGFRuE1jfa9yUM,23960
|
138
|
+
metaflow/plugins/aws/batch/batch_decorator.py,sha256=YAXVN6xuU_8CXZEXke2Qb7ogPtT5b5x6S9dRLQbHPa0,15590
|
137
139
|
metaflow/plugins/aws/secrets_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
138
140
|
metaflow/plugins/aws/secrets_manager/aws_secrets_manager_secrets_provider.py,sha256=QJflSbE6wBRDTjTcvNzCBt5JFyigWvvDHk3k6n1zXrA,7496
|
139
141
|
metaflow/plugins/aws/step_functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -142,8 +144,8 @@ metaflow/plugins/aws/step_functions/event_bridge_client.py,sha256=jPc3AExk2DofdR
|
|
142
144
|
metaflow/plugins/aws/step_functions/production_token.py,sha256=jEsDH0etkzORgeDTUx6UDRjRsy8QQHYjHWEDLE-0rVY,1898
|
143
145
|
metaflow/plugins/aws/step_functions/schedule_decorator.py,sha256=I-R1ki4kZ-cFb0zuCUa1EEE6uQ-FZRBXFxPdkxx8Lq4,1915
|
144
146
|
metaflow/plugins/aws/step_functions/set_batch_environment.py,sha256=ibiGWFHDjKcLfprH3OsX-g2M9lUsh6J-bp7v2cdLhD4,1294
|
145
|
-
metaflow/plugins/aws/step_functions/step_functions.py,sha256=
|
146
|
-
metaflow/plugins/aws/step_functions/step_functions_cli.py,sha256=
|
147
|
+
metaflow/plugins/aws/step_functions/step_functions.py,sha256=9Fd4EUE4wzm5YeG1chg6AUUx1PUdpeBHtGJOa8eDMOs,42073
|
148
|
+
metaflow/plugins/aws/step_functions/step_functions_cli.py,sha256=wMXSwB-n1HHD1v1VkiV4heeEzx5riM4Ah-A1WmyUPUA,17970
|
147
149
|
metaflow/plugins/aws/step_functions/step_functions_client.py,sha256=vjmV8AXHlUc2fo1i0iID2twuBBxKtIYmjid2ZCQBPs0,4224
|
148
150
|
metaflow/plugins/aws/step_functions/step_functions_decorator.py,sha256=R1C1EYdoYJUILXdpV-vdXOlyEBNiyDWfNXsTcG8URww,3791
|
149
151
|
metaflow/plugins/azure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -163,11 +165,11 @@ metaflow/plugins/cards/exception.py,sha256=Q-lQL08Otw8O6L3KI0fG0w5B7WevO1tD9MOdo
|
|
163
165
|
metaflow/plugins/cards/card_modules/__init__.py,sha256=WI2IAsFiKGyqPrHtO9S9-MbyVtUTgWJNL4xjJaBErRo,3437
|
164
166
|
metaflow/plugins/cards/card_modules/base.html,sha256=VfLWYhXglyH5Boncn8gtZ_Bc7V_ZXOkCuWQw_1H3InE,20708
|
165
167
|
metaflow/plugins/cards/card_modules/basic.py,sha256=mgLnoySFE-kQPGKKSb0DYfIrCv44E8nOogRyjY4Aalw,20356
|
166
|
-
metaflow/plugins/cards/card_modules/bundle.css,sha256=
|
168
|
+
metaflow/plugins/cards/card_modules/bundle.css,sha256=1kRe1j039KJR3eJE_Boy1P-W-zX-tx3zOEHvyi82Ih0,11534
|
167
169
|
metaflow/plugins/cards/card_modules/card.py,sha256=0u8Sm4PLvZeg4vHxwPseEr98JOrLmgFOGGDG9nLC90c,2359
|
168
170
|
metaflow/plugins/cards/card_modules/components.py,sha256=Tb4G9xm_TPBOeCIzjCOwBRTNcqUuiEuk90wTb0aCGrU,13566
|
169
|
-
metaflow/plugins/cards/card_modules/convert_to_native_type.py,sha256=
|
170
|
-
metaflow/plugins/cards/card_modules/main.js,sha256=
|
171
|
+
metaflow/plugins/cards/card_modules/convert_to_native_type.py,sha256=BusJvnhLTwmZDeQ-zL1ZDBQEnMZUH1-EYaNWJdK0fTE,15171
|
172
|
+
metaflow/plugins/cards/card_modules/main.js,sha256=dcOy5oN1DqREHLwIli9IRw-pg6Lxq5--4hzzJXikDVY,353143
|
171
173
|
metaflow/plugins/cards/card_modules/renderer_tools.py,sha256=V3H92FvIl2DtzVsU7SQuQd5_MFwvG6GSAmpqqrqeIQM,1641
|
172
174
|
metaflow/plugins/cards/card_modules/test_cards.py,sha256=sMjpPEhv184Kc7NQeBZXH3AyiHlxUahqE1aYBCKQdsg,2439
|
173
175
|
metaflow/plugins/cards/card_modules/chevron/__init__.py,sha256=SicpH_1eT76HUTA8aMuiGLRNKTqgYD1Qfutt2NdTL0E,156
|
@@ -178,9 +180,9 @@ metaflow/plugins/cards/card_modules/chevron/tokenizer.py,sha256=lQU9OELUE9a5Xu4s
|
|
178
180
|
metaflow/plugins/conda/__init__.py,sha256=Zamj1DqbZDhkXnq9jhmEGVWK18s1Js8e5jA4eyhL4k8,2839
|
179
181
|
metaflow/plugins/conda/batch_bootstrap.py,sha256=_7aQ-YAHlABC6aloRS5m17p7WIv_qJdWmZP7UQCFdd8,4693
|
180
182
|
metaflow/plugins/conda/conda.py,sha256=-CNTWjxmcbLoqbrwY8AJHwbQjuxvd-NSjChnZ95_pFc,8804
|
181
|
-
metaflow/plugins/conda/conda_environment.py,sha256=
|
183
|
+
metaflow/plugins/conda/conda_environment.py,sha256=KaLhyuKq0Doiz1DlTsckS7mJe_13aQkCVTMxMllmJac,5032
|
182
184
|
metaflow/plugins/conda/conda_flow_decorator.py,sha256=A9kU9DayjNT3df7T415mlFocZ5lVnJkhpNyzMZv8-UU,1189
|
183
|
-
metaflow/plugins/conda/conda_step_decorator.py,sha256=
|
185
|
+
metaflow/plugins/conda/conda_step_decorator.py,sha256=sf5Hx3PIabAaTBfYlSetWoOI526yiAVYIsZFt6uXzfg,15719
|
184
186
|
metaflow/plugins/datastores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
185
187
|
metaflow/plugins/datastores/azure_storage.py,sha256=lsQ6G-nz1j0_O3sRipqMpu-A-hJzg5LhaGpCH-Sbtgg,16317
|
186
188
|
metaflow/plugins/datastores/gs_storage.py,sha256=1dzkQPi6y5xNeZbmdCeh9ef5NK1yweTs3AJYcBwd63k,9705
|
@@ -189,7 +191,7 @@ metaflow/plugins/datastores/s3_storage.py,sha256=W3PIDbDyk67ecDfRf10mQeRGgaRq4zc
|
|
189
191
|
metaflow/plugins/datatools/__init__.py,sha256=ge4L16OBQLy2J_MMvoHg3lMfdm-MluQgRWoyZ5GCRnk,1267
|
190
192
|
metaflow/plugins/datatools/local.py,sha256=67hx3O_vInERlL0aJV0Sd-jUTd_2DOw4sJ4-IyEKNKM,4213
|
191
193
|
metaflow/plugins/datatools/s3/__init__.py,sha256=14tr9fPjN3ULW5IOfKHeG7Uhjmgm7LMtQHfz1SFv-h8,248
|
192
|
-
metaflow/plugins/datatools/s3/s3.py,sha256=
|
194
|
+
metaflow/plugins/datatools/s3/s3.py,sha256=AdpuyUoGuRKFahX7WaQKjWZlcUEt0GizOAAmimS3cbI,62975
|
193
195
|
metaflow/plugins/datatools/s3/s3op.py,sha256=7hBvTff_MC5oWPZPuQhEoxX46jk2vdawV2VTyUUZ5pA,42475
|
194
196
|
metaflow/plugins/datatools/s3/s3tail.py,sha256=boQjQGQMI-bvTqcMP2y7uSlSYLcvWOy7J3ZUaF78NAA,2597
|
195
197
|
metaflow/plugins/datatools/s3/s3util.py,sha256=FgRgaVmEq7-i2dV7q8XK5w5PfFt-xJjZa8WrK8IJfdI,3769
|
@@ -205,7 +207,7 @@ metaflow/plugins/env_escape/stub.py,sha256=K7eXwWv7-YAxMmioRD635swBbN2sAs0YAvoNW
|
|
205
207
|
metaflow/plugins/env_escape/utils.py,sha256=q91oeiBFVjiTYcLvZ1TNJaSUZxDL89_N5lreu5FUqoA,810
|
206
208
|
metaflow/plugins/env_escape/communication/__init__.py,sha256=Ff5AB88gOAvBzN2pp_2YNiD0PhUIt2SFE8nyOAKnxXg,38
|
207
209
|
metaflow/plugins/env_escape/communication/bytestream.py,sha256=weQBm-c6yPlGv1TAmQbYanqvQ0IRDh7x_6hZPvWh_Uw,1866
|
208
|
-
metaflow/plugins/env_escape/communication/channel.py,sha256=
|
210
|
+
metaflow/plugins/env_escape/communication/channel.py,sha256=7vs23ZGsdy1nYM0V9xAdodBPSXIWgkCwp5l5ymgIEdU,1650
|
209
211
|
metaflow/plugins/env_escape/communication/socket_bytestream.py,sha256=aQ9jC4OZH6_pfgWArt8tOIwLL41P2OBivtFu8ZmlyfQ,3572
|
210
212
|
metaflow/plugins/env_escape/communication/utils.py,sha256=vV20EUjXqo5gWBtObbJBb4WL44N-EBBZsDiPBGL7tl0,874
|
211
213
|
metaflow/plugins/env_escape/configurations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -223,14 +225,14 @@ metaflow/plugins/gcp/gs_tail.py,sha256=Jl_wvnzU7dub07A-DOAuP5FeccNIrPM-CeL1xKFs1
|
|
223
225
|
metaflow/plugins/gcp/gs_utils.py,sha256=YgtzUn9A0DlYRWR75h533RVYZsqR7eEZPRRR8QSFZik,2023
|
224
226
|
metaflow/plugins/gcp/includefile_support.py,sha256=vIDeR-MiJuUh-2S2pV7Z7FBkhIWwtHXaRrj76MWGRiY,3869
|
225
227
|
metaflow/plugins/kubernetes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
226
|
-
metaflow/plugins/kubernetes/kubernetes.py,sha256=
|
228
|
+
metaflow/plugins/kubernetes/kubernetes.py,sha256=GvrnOLfaZ_lkN5XJS5pnBIqEgdusA4SZ3yXDT-9dJxg,12717
|
227
229
|
metaflow/plugins/kubernetes/kubernetes_cli.py,sha256=Cdt1Bhfevi9dv_Ok2wyIyHjgUccJZ0UIzs0fxGkWO-Q,7847
|
228
230
|
metaflow/plugins/kubernetes/kubernetes_client.py,sha256=dV3TEGQMBbljmv6Gs1EKfmHTorKt21lhSiYsNx0To08,1901
|
229
|
-
metaflow/plugins/kubernetes/kubernetes_decorator.py,sha256=
|
230
|
-
metaflow/plugins/kubernetes/kubernetes_job.py,sha256=
|
231
|
+
metaflow/plugins/kubernetes/kubernetes_decorator.py,sha256=iQ5NgB6M4IcJAXHGuZrCG4qoT_XXmRj1K_RiDG4_2ZY,17409
|
232
|
+
metaflow/plugins/kubernetes/kubernetes_job.py,sha256=nA2eqOPVd2Hr5_feD-9P9z7kM0ur0lU7CDhvNDcu0hA,25011
|
231
233
|
metaflow/plugins/metadata/__init__.py,sha256=q5OifpVipqhZuyrXBp9YIJN_jUov14_CNMveim9L8Rs,86
|
232
234
|
metaflow/plugins/metadata/local.py,sha256=YhLJC5zjVJrvQFIyQ92ZBByiUmhCC762RUX7ITX12O8,22428
|
233
|
-
metaflow/plugins/metadata/service.py,sha256
|
235
|
+
metaflow/plugins/metadata/service.py,sha256=-qqSENTUAE7-xc5dlR3EHHrfP2MY9PmQN1ueNnpL6tQ,20031
|
234
236
|
metaflow/plugins/secrets/__init__.py,sha256=JOiQbP7vGpcBv8SPfsIvSARk1tigypX26Hv9IL9tu4s,299
|
235
237
|
metaflow/plugins/secrets/inline_secrets_provider.py,sha256=iQ2a881pAbFAiIcqG6MSi_XHuN05jsa7t6sM-6ejQ8A,283
|
236
238
|
metaflow/plugins/secrets/secrets_decorator.py,sha256=QQtcLLfz-I26Nkm80212LLBtUx8Z8ty8lrYqJfpMjBE,9235
|
@@ -245,26 +247,26 @@ metaflow/tutorials/01-playlist/README.md,sha256=b9jgxen-vaVNIyH2UZPys4vvbxBylSoq
|
|
245
247
|
metaflow/tutorials/01-playlist/movies.csv,sha256=oO8mryw7KqN3oCrYLnblVQbib0wKErbK6wKA02kNF14,195869
|
246
248
|
metaflow/tutorials/01-playlist/playlist.ipynb,sha256=4Ov6c0vljXouq4wp3OOk7wwLsQU9xFPXZ-qKoaVBgAU,2696
|
247
249
|
metaflow/tutorials/01-playlist/playlist.py,sha256=1L8fN-JR7vpEUtOBhDzRMuX5bK6z-mdTIqolT1uD2PI,4106
|
248
|
-
metaflow/tutorials/02-statistics/README.md,sha256=
|
250
|
+
metaflow/tutorials/02-statistics/README.md,sha256=1FNdBKgspCe7nIzmo3zWvMWvbgOSHSYVVMGy7DVEjDw,815
|
249
251
|
metaflow/tutorials/02-statistics/movies.csv,sha256=OjmDzT8JZ1h_MMxiRCdTDNWCcw4i5_CmY3gsL0XUY2o,195909
|
250
252
|
metaflow/tutorials/02-statistics/stats.ipynb,sha256=yxpXpRUxVoAGyyqjr_CL4XVBs2edQAGItUt4a7zUYa4,2489
|
251
|
-
metaflow/tutorials/02-statistics/stats.py,sha256=
|
253
|
+
metaflow/tutorials/02-statistics/stats.py,sha256=FZSJdDBlbkRoapyZmgKN6QYYXurPTaiPeFf0PL8ps30,4236
|
252
254
|
metaflow/tutorials/03-playlist-redux/README.md,sha256=EdONjpEBK4xqyDC1EboENNuYntsgrz5x2m663YfSkds,522
|
253
|
-
metaflow/tutorials/03-playlist-redux/playlist.py,sha256=
|
255
|
+
metaflow/tutorials/03-playlist-redux/playlist.py,sha256=XDeqgDyLfRUsLCnwWHsh5z5zdq9jvKYSVIZvnNwDiXk,4117
|
254
256
|
metaflow/tutorials/04-playlist-plus/README.md,sha256=cLPRWJ4sg8103ow-w8W2G-JsIyg2-qmLNiRurXx_wOY,1130
|
255
|
-
metaflow/tutorials/04-playlist-plus/playlist.py,sha256=
|
256
|
-
metaflow/tutorials/05-
|
257
|
-
metaflow/tutorials/05-
|
258
|
-
metaflow/tutorials/05-
|
259
|
-
metaflow/tutorials/06-statistics-redux/README.md,sha256=
|
260
|
-
metaflow/tutorials/06-statistics-redux/stats.ipynb,sha256=
|
261
|
-
metaflow/tutorials/07-worldview/README.md,sha256=
|
262
|
-
metaflow/tutorials/07-worldview/worldview.ipynb,sha256=
|
263
|
-
metaflow/tutorials/08-autopilot/README.md,sha256=
|
264
|
-
metaflow/tutorials/08-autopilot/autopilot.ipynb,sha256=
|
265
|
-
metaflow-2.8.
|
266
|
-
metaflow-2.8.
|
267
|
-
metaflow-2.8.
|
268
|
-
metaflow-2.8.
|
269
|
-
metaflow-2.8.
|
270
|
-
metaflow-2.8.
|
257
|
+
metaflow/tutorials/04-playlist-plus/playlist.py,sha256=VjJOTRikLA0KOa4hRUkit8QrdocuguWNlJyP-in0w9Q,5021
|
258
|
+
metaflow/tutorials/05-hello-cloud/README.md,sha256=2C6-OBk2imagZ83CPREgsjrCHaurYIXMua6NgD70h_o,2247
|
259
|
+
metaflow/tutorials/05-hello-cloud/hello-cloud.ipynb,sha256=1e2zdicu7El3moG8uv0PbVHymzncpTp5zwlIoBYOKqo,1880
|
260
|
+
metaflow/tutorials/05-hello-cloud/hello-cloud.py,sha256=A-IFmnDzcHZzy0DF6WffcxsEBf9ks9PCDAd-8jZVg7o,1596
|
261
|
+
metaflow/tutorials/06-statistics-redux/README.md,sha256=5lAuOJ6xJ4TmG5nYLV3t92y5nXZ-MivYLGTOyHf1LYo,1030
|
262
|
+
metaflow/tutorials/06-statistics-redux/stats.ipynb,sha256=tNZzKawyx7D0a_TvWJXrI-JvO39uEwXppAc8gt5awHE,3280
|
263
|
+
metaflow/tutorials/07-worldview/README.md,sha256=5vQTrFqulJ7rWN6r20dhot9lI2sVj9WLeSLEgXktSS4,391
|
264
|
+
metaflow/tutorials/07-worldview/worldview.ipynb,sha256=ztPZPI9BXxvW1QdS2Tfe7LBuVzvFvv0AToDnsDJhLdE,2237
|
265
|
+
metaflow/tutorials/08-autopilot/README.md,sha256=GnePFp_q76jPs991lMUqfIIh5zSorIeWznyiUxzeUVE,1039
|
266
|
+
metaflow/tutorials/08-autopilot/autopilot.ipynb,sha256=DQoJlILV7Mq9vfPBGW-QV_kNhWPjS5n6SJLqePjFYLY,3191
|
267
|
+
metaflow-2.8.3.dist-info/LICENSE,sha256=nl_Lt5v9VvJ-5lWJDT4ddKAG-VZ-2IaLmbzpgYDz2hU,11343
|
268
|
+
metaflow-2.8.3.dist-info/METADATA,sha256=cYAvHq6oRvXVAyY4Hn0lb_NfpyAehrv3VTh6F-9aHJM,2593
|
269
|
+
metaflow-2.8.3.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
|
270
|
+
metaflow-2.8.3.dist-info/entry_points.txt,sha256=IKwTN1T3I5eJL3uo_vnkyxVffcgnRdFbKwlghZfn27k,57
|
271
|
+
metaflow-2.8.3.dist-info/top_level.txt,sha256=v1pDHoWaSaKeuc5fKTRSfsXCKSdW1zvNVmvA-i0if3o,9
|
272
|
+
metaflow-2.8.3.dist-info/RECORD,,
|
@@ -1,27 +0,0 @@
|
|
1
|
-
# Episode 05-helloaws: Look Mom, We're in the Cloud.
|
2
|
-
|
3
|
-
**This flow is a simple linear workflow that verifies your AWS
|
4
|
-
configuration. The 'start' and 'end' steps will run locally, while the 'hello'
|
5
|
-
step will run remotely on AWS batch. After configuring Metaflow to run on AWS,
|
6
|
-
data and metadata about your runs will be stored remotely. This means you can
|
7
|
-
use the client to access information about any flow from anywhere.**
|
8
|
-
|
9
|
-
#### Showcasing:
|
10
|
-
- AWS batch decorator.
|
11
|
-
- Accessing data artifacts generated remotely in a local notebook.
|
12
|
-
- retry decorator.
|
13
|
-
|
14
|
-
#### Before playing this episode:
|
15
|
-
1. ```python -m pip install notebook```
|
16
|
-
2. This tutorial requires access to compute and storage resources on AWS, which
|
17
|
-
can be configured by
|
18
|
-
1. Following the instructions at
|
19
|
-
https://docs.metaflow.org/metaflow-on-aws/deploy-to-aws or
|
20
|
-
2. Requesting a sandbox at
|
21
|
-
https://docs.metaflow.org/metaflow-on-aws/metaflow-sandbox
|
22
|
-
|
23
|
-
#### To play this episode:
|
24
|
-
1. ```cd metaflow-tutorials```
|
25
|
-
2. ```python 05-helloaws/helloaws.py run```
|
26
|
-
3. ```jupyter-notebook 05-helloaws/helloaws.ipynb```
|
27
|
-
4. Open 'helloaws.ipynb' in your remote Sagemaker notebook
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|