Skip to content

Update import_model_into_registry.ipynb #3595

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
6d7b27f
Update import_model_into_registry.ipynb
raghu-microsoft May 27, 2025
47bd07c
Update import_model_into_registry.ipynb
raghu-microsoft May 27, 2025
b6fc6d6
Update sdk-foundation-models-system-import-import_model_into_registry…
raghu-microsoft May 27, 2025
9c24c13
Update dev-requirements.txt
raghu-microsoft May 27, 2025
4bf8eaa
Update dev-requirements.txt
raghu-microsoft May 27, 2025
14fb0dc
Update sdk-foundation-models-system-import-import_model_into_registry…
raghu-microsoft May 27, 2025
30b7050
Update requirements.txt
raghu-microsoft May 27, 2025
d688869
Update import_model_into_registry.ipynb
raghu-microsoft May 27, 2025
8a70927
Update import_model_into_registry.ipynb
raghu-microsoft May 27, 2025
baaa0db
Update requirements.txt
raghu-microsoft May 27, 2025
5412054
Update import_model_into_registry.ipynb
raghu-microsoft May 27, 2025
43b1c48
Update sdk-foundation-models-system-import-import_model_into_registry…
raghu-microsoft May 27, 2025
cb0cf6e
Update requirements.txt
raghu-microsoft May 27, 2025
eba3703
Update requirements.txt
raghu-microsoft May 27, 2025
2863959
Update sdk-foundation-models-system-import-import_model_into_registry…
raghu-microsoft May 27, 2025
f095829
Update sdk-foundation-models-system-import-import_model_into_registry…
raghu-microsoft May 27, 2025
56d6640
Update import_model_into_registry.ipynb
raghu-microsoft May 27, 2025
4d0d5a8
Update import_model_into_registry.ipynb
raghu-microsoft May 27, 2025
72fc03a
Update requirements.txt
raghu-microsoft May 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
python-version: "3.10"
- name: pip install notebook reqs
run: pip install -r sdk/python/dev-requirements.txt
- name: install azure-ai-ml
run: pip install azure-ai-ml
- name: azure login
uses: azure/login@v1
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,9 +479,13 @@
" pipeline_object, experiment_name=experiment_name\n",
" )\n",
" # wait for the pipeline job to complete\n",
" ml_client_ws.jobs.stream(huggingface_pipeline_job.name)"
" if huggingface_pipeline_job is not None:\n",
" print(\"Pipeline job submitted. Name:\", huggingface_pipeline_job.name)\n",
" ml_client_ws.jobs.stream(huggingface_pipeline_job.name)\n",
" else:\n",
" print(\"Pipeline job creation failed.\")"
]
},
},
{
"cell_type": "markdown",
"id": "f33d5c80",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
'transformers>=4.28.1',
'torch>=1.9.0',
'accelerate>=0.19.0',
'Pillow==9.4.0'
'Pillow==9.4.0'
Loading