Skip to content

Commit

Permalink
rename diffusers_text_to_image_dreambooth_finetuning_pipeline to diff…
Browse files Browse the repository at this point in the history
…users_text_to_image_dreambooth_pipeline (#3153)
  • Loading branch information
rjaincc committed May 2, 2024
1 parent d25c715 commit f8fe695
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"\n",
"DreamBooth is a method for personalizing text-to-image models. It fine-tunes these models using 5-10 images of a specific subject, allowing them to generate personalized images based on textual prompts.\n",
"\n",
"This sample shows how to use `diffusers_text_to_image_dreambooth_finetuning_pipeline` component from the `azureml` system registry to fine tune a model for text to image task using dog Dataset. We then deploy the fine tuned model to an online endpoint for real time inference.\n",
"This sample shows how to use `diffusers_text_to_image_dreambooth_pipeline` component from the `azureml` system registry to fine tune a model for text to image task using dog Dataset. We then deploy the fine tuned model to an online endpoint for real time inference.\n",
"\n",
"### Training data\n",
"We will use the [dog-example](https://huggingface.co/datasets/diffusers/dog-example) dataset.\n",
Expand Down Expand Up @@ -260,9 +260,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### 5. Submit the fine tuning job using `diffusers_text_to_image_dreambooth_finetuning_pipeline` component\n",
"### 5. Submit the fine tuning job using `diffusers_text_to_image_dreambooth_pipeline` component\n",
" \n",
"Create the job that uses the `diffusers_text_to_image_dreambooth_finetuning_pipeline` component for `stable-diffusion-text-to-image` task. Learn more in 5.2 about all the parameters supported for fine tuning."
"Create the job that uses the `diffusers_text_to_image_dreambooth_pipeline` component for `stable-diffusion-text-to-image` task. Learn more in 5.2 about all the parameters supported for fine tuning."
]
},
{
Expand All @@ -278,7 +278,7 @@
"metadata": {},
"outputs": [],
"source": [
"FINETUNE_PIPELINE_COMPONENT_NAME = \"diffusers_text_to_image_dreambooth_finetuning_pipeline\"\n",
"FINETUNE_PIPELINE_COMPONENT_NAME = \"diffusers_text_to_image_dreambooth_pipeline\"\n",
"\n",
"pipeline_component_transformers_func = registry_ml_client.components.get(\n",
" name=FINETUNE_PIPELINE_COMPONENT_NAME, label=\"latest\"\n",
Expand All @@ -289,9 +289,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 5.2 Create arguments to be passed to `diffusers_text_to_image_dreambooth_finetuning_pipeline` component\n",
"#### 5.2 Create arguments to be passed to `diffusers_text_to_image_dreambooth_pipeline` component\n",
"\n",
"The `diffusers_text_to_image_dreambooth_finetuning_pipeline` component consists of model selection and finetuning components.\n",
"The `diffusers_text_to_image_dreambooth_pipeline` component consists of model selection and finetuning components.\n",
"\n",
"*Uncomment one or more parameters below to provide specific values, if you wish you override the autoselected default values. Please visit this pipeline component in Azure ML studio to know more about arguments and their allowed values.*"
]
Expand Down Expand Up @@ -397,7 +397,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 5.3 Utility function to create pipeline using `transformers_text_to_image_dreambooth_finetuning_pipeline` component"
"#### 5.3 Utility function to create pipeline using `diffusers_text_to_image_dreambooth_pipeline` component"
]
},
{
Expand Down

0 comments on commit f8fe695

Please sign in to comment.