File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
examples/annotation_types Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 140
140
" - Covered in this notebook\n " ,
141
141
" 2. Export labels to an annotation generator\n " ,
142
142
" - `project.label_generator()`\n " ,
143
- " - `project.video_label_generator()`\n " ,
144
143
" 3. Use a converter to load from another format\n " ,
145
144
" - Covered in the converters.ipynb notebook."
146
145
]
Original file line number Diff line number Diff line change 35
35
"* The goal is to create a set of converts that convert to and from labelbox annotation types.\n",
36
36
"* This is automatically used when exporting labels from labelbox with:\n",
37
37
" 1. `label.label_generator()`\n",
38
- " 2. `label.video_label_generator()`\n",
39
38
"* Currently we support:\n",
40
39
" 1. NDJson Converter\n",
41
40
" - Convert to and from the prediction import format (mea, mal)\n",
363
362
],
364
363
"source": [
365
364
"project = client.get_project(\"ckqcx1d58068c0y619qv7hzgu\")\n",
366
- "labels = project.video_label_generator ()\n",
365
+ "labels = project.label_generator ()\n",
367
366
"\n",
368
367
"for label in labels:\n",
369
368
" annotation_lookup = label.frame_annotations()\n",
You can’t perform that action at this time.
0 commit comments