Skip to content

Commit 40cf8e9

Browse files
committed
add readme
1 parent c7c8ac2 commit 40cf8e9

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

examples/integrations/tlt/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# NVIDIA + Labelbox
2+
3+
##### Turn any Labelbox bounding box project into a deployed service by following these tutorials
4+
5+
--------
6+
7+
8+
#### labelbox_upload.ipynb
9+
* Download images and prelabels
10+
* Setup a labelbox project
11+
* Upload prelabels to labelbox using MAL
12+
* Clean up the data in labelbox
13+
14+
#### detectnet_v2_bounding_box.ipynb
15+
* Plug in training data from previous step (or bring your own labelbox project)
16+
* Train a model using TLT. Compare with a non-pretrained model
17+
* Prune the model for more efficient deployment
18+
* Convert the model to a TRT engine
19+
* Deploy the model using Triton Inference Server
20+

examples/integrations/tlt/labelbox_upload.ipynb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@
1515
"metadata": {},
1616
"outputs": [],
1717
"source": [
18-
"from labelbox import Client, Project, Dataset\n",
18+
"from labelbox import Client, Project, Dataset, LabelingFrontend\n",
1919
"from labelbox.schema.ontology import OntologyBuilder, Tool, Classification, Option\n",
20-
"from labelbox import LabelingFrontend\n",
2120
"import json\n",
2221
"from collections import defaultdict\n",
2322
"from PIL import Image\n",
24-
"import cv2\n",
2523
"import datetime\n",
2624
"import os\n",
2725
"import uuid\n",

0 commit comments

Comments
 (0)