You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Provide a valid api key below in order to properly connect to the Labelbox Client."
66
-
],
67
-
"cell_type": "markdown"
64
+
]
68
65
},
69
66
{
67
+
"cell_type": "code",
68
+
"execution_count": null,
70
69
"metadata": {},
70
+
"outputs": [],
71
71
"source": [
72
72
"# Add your api key and project\n",
73
73
"API_KEY = None\n",
74
74
"client = lb.Client(api_key=API_KEY)\n",
75
75
"project = client.get_project(PROJECT_ID)"
76
-
],
77
-
"cell_type": "code",
78
-
"outputs": [],
79
-
"execution_count": null
76
+
]
80
77
},
81
78
{
79
+
"cell_type": "markdown",
82
80
"metadata": {},
83
81
"source": [
84
82
"### Export the labels\n",
85
83
"* Data can be exported to annotation objects or raw_json (old export format)"
86
-
],
87
-
"cell_type": "markdown"
84
+
]
88
85
},
89
86
{
87
+
"cell_type": "code",
88
+
"execution_count": null,
90
89
"metadata": {},
90
+
"outputs": [],
91
91
"source": [
92
92
"labels = project.label_generator()\n",
93
93
"\n",
@@ -104,7 +104,7 @@
104
104
{
105
105
"metadata": {},
106
106
"source": [
107
-
"* Optionally convert to a `LabelList` for small to medium sized datasets\n",
107
+
"* Optionally convert to a `list` for small to medium sized datasets\n",
108
108
"* This is more convenient than the `LabelGenerator` but less memory efficient\n",
109
109
"* Read more about the differences [here](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/master/examples/annotation_types/label_containers.ipynb)"
Copy file name to clipboardExpand all lines: examples/label_export/text.ipynb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@
110
110
{
111
111
"metadata": {},
112
112
"source": [
113
-
"Optionally, convert to a `LabelList` for small to medium-sized datasets.\n",
113
+
"Optionally, convert to a `list` for small to medium-sized datasets.\n",
114
114
"\n",
115
115
"This is more convenient than the LabelGenerator, but less memory efficient. Read more about the differences [here](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/master/examples/annotation_types/label_containers.ipynb)."
0 commit comments