Skip to content

Commit 30c9a54

Browse files
Changed model names and zoo (#78)
Signed-off-by: darshil-degirum <c_darshil@degirum.com>
1 parent 35c79a3 commit 30c9a54

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

examples/google_colab/pysdk_google_hello_world.ipynb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
"\n",
8686
"# load object detection AI model\n",
8787
"model = dg.load_model(\n",
88-
" model_name=\"yolov8n_relu6_coco--640x640_quant_tflite_edgetpu_1\",\n",
88+
" model_name=\"yolov8n_relu6_coco--512x512_quant_tflite_edgetpu_1\",\n",
8989
" inference_host_address=\"@cloud\",\n",
90-
" zoo_url='degirum/models_tflite',\n",
90+
" zoo_url='degirum/google',\n",
9191
" token=degirum_tools.get_token(),\n",
9292
")\n",
9393
"\n",
@@ -123,12 +123,12 @@
123123
"# Define configurations\n",
124124
"model_configurations = {\n",
125125
" \"Google\": {\n",
126-
" \"zoo_url\": \"degirum/models_tflite\",\n",
126+
" \"zoo_url\": \"degirum/google\",\n",
127127
" \"model_names\": {\n",
128128
" \"classification\": [\"yolov8s_silu_imagenet--224x224_quant_tflite_edgetpu_1\"],\n",
129-
" \"detection\": [\"yolov8n_relu6_coco--640x640_quant_tflite_edgetpu_1\"],\n",
129+
" \"detection\": [\"yolov8n_relu6_coco--512x512_quant_tflite_edgetpu_1\"],\n",
130130
" \"keypoint_detection\": [\"yolov8n_relu6_widerface_kpts--640x640_quant_tflite_edgetpu_1\"],\n",
131-
" \"segmentation\": [\"yolov8n_relu6_coco_seg--640x640_quant_tflite_edgetpu_1\"],\n",
131+
" \"segmentation\": [\"yolov8n_relu6_coco_seg--512x512_quant_tflite_edgetpu_1\"],\n",
132132
" },\n",
133133
" },\n",
134134
"}\n",
@@ -210,8 +210,8 @@
210210
"import degirum as dg, degirum_tools\n",
211211
"\n",
212212
"hw_location = \"@cloud\" # \"@cloud\" for cloud inference, \"@local\" for local inference, or IP address for AI server inference\n",
213-
"model_zoo_url = \"degirum/models_tflite\"\n",
214-
"model_name = \"yolov8n_relu6_coco--640x640_quant_tflite_edgetpu_1\"\n",
213+
"model_zoo_url = \"degirum/google\"\n",
214+
"model_name = \"yolov8n_relu6_coco--512x512_quant_tflite_edgetpu_1\"\n",
215215
"image_source = \"https://raw.githubusercontent.com/DeGirum/PySDKExamples/main/images/Mask1.jpg\"\n",
216216
"\n",
217217
"# load object detection AI model\n",

0 commit comments

Comments
 (0)