Skip to content

Commit 0e667d4

Browse files
Paul NoirelPaul Noirel
authored andcommitted
Change test_img_url to target develop instead of sdk
1 parent e54c6cf commit 0e667d4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/model_assisted_labeling/debugging_mal.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
"source": [
154154
"project = client.create_project(name=\"debugging_mal_project\")\n",
155155
"dataset = client.create_dataset(name=\"debugging_mal_dataset\")\n",
156-
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/sdk/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
156+
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/develop/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
157157
"data_row = dataset.create_data_row(row_data=test_img_url)\n",
158158
"editor = next(\n",
159159
" client.get_labeling_frontends(where=LabelingFrontend.name == 'editor'))\n",

examples/model_assisted_labeling/image_mal.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
"# Note see Ontology, Project, and Project_setup notebooks for more information on this section.\n",
175175
"project = client.create_project(name=\"image_mal_project\")\n",
176176
"dataset = client.create_dataset(name=\"image_mal_dataset\")\n",
177-
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/sdk/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
177+
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/develop/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
178178
"dataset.create_data_row(row_data=test_img_url)\n",
179179
"editor = next(\n",
180180
" client.get_labeling_frontends(where=LabelingFrontend.name == \"Editor\"))\n",

examples/model_assisted_labeling/mal_basics.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"])\n",
141141
"project = client.create_project(name=\"image_mal_project\")\n",
142142
"dataset = client.create_dataset(name=\"image_mal_dataset\")\n",
143-
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/sdk/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
143+
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/develop/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
144144
"data_row = dataset.create_data_row(row_data=test_img_url)\n",
145145
"editor = next(\n",
146146
" client.get_labeling_frontends(where=LabelingFrontend.name == 'editor'))\n",

examples/model_assisted_labeling/mal_with_subclasses.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
"# Note see Ontology, Project, and Project_setup notebooks for more information on this section.\n",
170170
"project = client.create_project(name=\"subclass_mal_project\")\n",
171171
"dataset = client.create_dataset(name=\"subclass_mal_dataset\")\n",
172-
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/sdk/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
172+
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/develop/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
173173
"dataset.create_data_row(row_data=test_img_url)\n",
174174
"editor = next(\n",
175175
" client.get_labeling_frontends(where=LabelingFrontend.name == 'editor'))\n",

examples/project_configuration/project_setup.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
"project = client.create_project(name=\"my_new_project\")\n",
114114
"dataset = client.create_dataset(name=\"my_new_dataset\")\n",
115115
"# Add data_rows since this is a new dataset (see basics/data_rows.ipynb for more information on this)\n",
116-
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/sdk/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
116+
"test_img_url = \"https://raw.githubusercontent.com/Labelbox/labelbox-python/develop/examples/assets/2560px-Kitano_Street_Kobe01s5s4110.jpg\"\n",
117117
"dataset.create_data_row(row_data=test_img_url)"
118118
]
119119
},

0 commit comments

Comments
 (0)