Skip to content

Commit 5028a30

Browse files
committed
cleanup notebooks that used to use video label generator
1 parent 4893f71 commit 5028a30

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

examples/annotation_types/basics.ipynb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@
140140
" - Covered in this notebook\n",
141141
"2. Export labels to an annotation generator\n",
142142
" - `project.label_generator()`\n",
143-
" - `project.video_label_generator()`\n",
144143
"3. Use a converter to load from another format\n",
145144
" - Covered in the converters.ipynb notebook."
146145
]

examples/annotation_types/converters.ipynb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
"* The goal is to create a set of converts that convert to and from labelbox annotation types.\n",
3636
"* This is automatically used when exporting labels from labelbox with:\n",
3737
" 1. `label.label_generator()`\n",
38-
" 2. `label.video_label_generator()`\n",
3938
"* Currently we support:\n",
4039
" 1. NDJson Converter\n",
4140
" - Convert to and from the prediction import format (mea, mal)\n",
@@ -363,7 +362,7 @@
363362
],
364363
"source": [
365364
"project = client.get_project(\"ckqcx1d58068c0y619qv7hzgu\")\n",
366-
"labels = project.video_label_generator()\n",
365+
"labels = project.label_generator()\n",
367366
"\n",
368367
"for label in labels:\n",
369368
" annotation_lookup = label.frame_annotations()\n",

0 commit comments

Comments
 (0)