Skip to content

Commit

Permalink
[AutoML Vision] Updates for addressing run failures (#2883)
Browse files Browse the repository at this point in the history
* updates for addressing run failures

* updates for addressing run failures

* revert accidental metadata changes
  • Loading branch information
rjaincc authored Dec 5, 2023
1 parent 20a2287 commit 9965308
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@
" target_column_name=\"label\",\n",
")\n",
"\n",
"image_classification_multilabel_job.set_limits(timeout_minutes=70)\n",
"image_classification_multilabel_job.set_limits(timeout_minutes=120)\n",
"\n",
"image_classification_multilabel_job.set_training_parameters(\n",
" model_name=\"microsoft/beit-base-patch16-224-pt22k-ft22k\"\n",
Expand Down Expand Up @@ -820,7 +820,7 @@
")\n",
"\n",
"image_classification_multilabel_job.set_limits(\n",
" timeout_minutes=60,\n",
" timeout_minutes=120,\n",
" max_trials=10,\n",
" max_concurrent_trials=2,\n",
")\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@
"image_instance_segmentation_job.set_limits(timeout_minutes=60)\n",
"\n",
"image_instance_segmentation_job.set_training_parameters(\n",
" model_name=\"mmd-3x-mask-rcnn_swin-t-p4-w7_fpn_1x_coco\"\n",
" model_name=\"mask-rcnn_swin-t-p4-w7_fpn_1x_coco\"\n",
")"
]
},
Expand Down Expand Up @@ -1062,7 +1062,7 @@
" min_size=Choice([600, 800]),\n",
" ),\n",
" SearchSpace(\n",
" model_name=Choice([\"mmd-3x-mask-rcnn_swin-t-p4-w7_fpn_1x_coco\"]),\n",
" model_name=Choice([\"mask-rcnn_swin-t-p4-w7_fpn_1x_coco\"]),\n",
" learning_rate=Uniform(0.00001, 0.0001),\n",
" number_of_epochs=Choice([10, 15]),\n",
" ),\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@
"\n",
"# Pass the fixed settings or parameters\n",
"image_object_detection_job.set_training_parameters(\n",
" model_name=\"mmd-3x-vfnet_r50-mdconv-c3-c5_fpn_ms-2x_coco\"\n",
" model_name=\"vfnet_r50-mdconv-c3-c5_fpn_ms-2x_coco\"\n",
")"
]
},
Expand Down Expand Up @@ -1087,8 +1087,8 @@
" SearchSpace(\n",
" model_name=Choice(\n",
" [\n",
" \"mmd-3x-deformable-detr_refine_twostage_r50_16xb2-50e_coco\",\n",
" \"mmd-3x-sparse-rcnn_r50_fpn_300-proposals_crop-ms-480-800-3x_coco\",\n",
" \"deformable-detr_refine_twostage_r50_16xb2-50e_coco\",\n",
" \"sparse-rcnn_r50_fpn_300-proposals_crop-ms-480-800-3x_coco\",\n",
" ]\n",
" ),\n",
" learning_rate=Uniform(0.00001, 0.0001),\n",
Expand Down Expand Up @@ -1118,7 +1118,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 20,
"metadata": {
"tags": [
"validation-remove"
Expand Down

0 comments on commit 9965308

Please sign in to comment.