|
7 | 7 | "source": [ |
8 | 8 | "# Label Containers\n", |
9 | 9 | "* There are two high level containers for labels\n", |
10 | | - " 1. LabelList\n", |
11 | | - " 2. LabelGenerator\n", |
| 10 | + " 1. [`LabelList`](#LabelList)\n", |
| 11 | + " 2. [`LabelGenerator`](#LabelGenerator)\n", |
12 | 12 | "* Tools that are built to convert between formats, help with etl, and model training all will operate on these containers\n", |
13 | 13 | "* Make sure to read basics. Explanations are not repeated here" |
14 | 14 | ] |
|
91 | 91 | "id": "cubic-burlington", |
92 | 92 | "metadata": {}, |
93 | 93 | "source": [ |
94 | | - "#### Helper Functions\n", |
95 | | - "* See basics for details on this" |
| 94 | + "### Helper Functions\n", |
| 95 | + "* The following functions are explained in the [basics notebooks](https://colab.research.google.com/github/Labelbox/labelbox-python/blob/develop/examples/annotation_types/basics.ipynb)\n", |
| 96 | + "* Please skip to the [LabelList](#LabelList) section to continue with this tutorial" |
96 | 97 | ] |
97 | 98 | }, |
98 | 99 | { |
|
255 | 256 | "# LabelList\n", |
256 | 257 | "* This object is essentially a list of Labels with a set of helpful utilties\n", |
257 | 258 | "* This object is simple and fast at the expense of memory\n", |
258 | | - " * Larger datasets shouldn't use label list ( or at least will require more ram ).\n", |
| 259 | + " * Larger datasets shouldn't use label list ( or at least will require more memory ).\n", |
259 | 260 | "* Why use label list over just a list of labels?\n", |
260 | 261 | " * Multithreaded utilities (faster)\n", |
261 | 262 | " * Compatible with converter functions (functions useful for translating between formats, etl, and training )" |
|
0 commit comments