Universal Data Tool
Search…
Universal Data Tool
Universal Data Tool Docs
Installation
Running On-Premise
Collaborative Labeling
Building and Labeling Datasets
Image Segmentation
Image Classification
Text Classification
Named Entity Recognition
Entity Relations / Part of Speech Tagging
Audio Transcription
Data Entry
Video Segmentation
Composite Interfaces
Landmark / Pose Annotation
Importing Data
Upload or Open Directories
Import File URLs
Import COCO Images
Import from Google Drive
Import from AWS S3 Bucket
Import from CSV or JSON
Import using AWS Cognito
Import Text Snippets
The Format .udt.json
What is the .udt.json format?
What is the .udt.csv format?
Machine Learning
Jupyter Notebook Integration
Import Datasets into Pandas
Fast.ai
Integrate with Any Web Page
Integrate with the Javascript Library
Getting Started with React
Train your Workforce
Getting Started with UDT Courses
Frequently Asked Questions
Powered By
GitBook
Jupyter Notebook Integration
Use the Universal Data Tool directly within a Jupyter Notebook
Installation
To get started, we'll need to install the
Universal Data Tool python module
.
1
pip
install
universaldatatool
Copied!
Creating a Dataset
Creating datasets inside python is really easy!
1
import
universaldatatool
as
udt
2
​
3
ds
=
udt
.
Dataset
(
4
type
=
"image_segmentation"
,
5
image_paths
=
[
"/path/to/birds/good_bird.jpg"
,
"/path/to/birds/bird2.jpg"
],
6
labels
=
[
"good bird"
,
"bad bird"
]
7
)
8
​
9
# Opens dataset directly in jupyter notebook
10
ds
.
open
()
Copied!
The Universal Data Tool will open inside of your Jupyter Notebook
Loading a udt.json or udt.csv file
1
import
universaldatatool
as
udt
2
​
3
ds
=
udt
.
load
(
"path/to/dataset.udt.json"
)
4
​
5
# Opens dataset directly in jupyter notebook
6
ds
.
open
()
Copied!
The Format .udt.json - Previous
What is the .udt.csv format?
Next - Machine Learning
Import Datasets into Pandas
Last modified
1yr ago
Copy link
Contents
Installation
Creating a Dataset
Loading a udt.json or udt.csv file