If you have not visited the following landing pages, please do so before attempting to use this repository.
- See the release notes document
EdgeAI-ModelMaker is an end-to-end model development tool that contains dataset handling, model training and compilation. Currently, it doesn't have an integrated feature to annotate data, but can accept annotated Dataset from a tool such as Label Studio
We have published several repositories for model training, model compilation and modelzoo as explained in our edgeai gihub page. This repository is an attempt to stitch several of them together to make release_notes.mda simple and consistent interface for model development. This does not support all the models that can be trained and compiled using our tools, but only a subset. This is a commandline tool and requires a Linux PC.
- Dataset handling: This dataset formats supported by this tool is described in a section below. This can convert dataset formats and can automatically split the given dataset into train and validation sets (if it is not already split).
- Model training: Model training repositories such as edgeai-torchvision and edgeai-mmdetection are integrated. Several models with pretrained checkpoints are incorporated for each of these repositories.
- Model compilation: Model compilation tools edgeai-tidl-tools and edgeai-benchmark for TI's EdgeAI SoCs have been integrated.
These functionalities that are supported are fully integrated and the user can control it by setting parameters in the config file.
- Image Classification
- Object Detection
- Semantic Segmentation
- Keypoint Detection
For Object Detection, we use YOLOX models. For Image Classification we have support for MobileNetV2 and RegNetX. For Semantic Segmentation we have support DeepLabV3Plus, FPN and UNet models. For Keypoint Detection we use the YOLO-pose method.
These are devices with Analytics Accelerators (DSP and Matrix Multiplier Acceletator) along with ARM cores.
- AM62A
- AM68A / TDA4AL, TDA4VE, TDA4VL
- AM69A / TDA4VH, TDA4AH, TDA4VP, TDA4AP
- TDA4VM (AM68PA)
These are non-accelerated devices (model inference runs on ARM cores) supported.
- AM62
The details of these SoCs are here
This repository can be used from native Ubuntu bash terminal directly or from within a docker environment.
We have tested this tool in Ubuntu 22.04 and with Python 3.10 (Note: From 9.0 release onwards edgeai-tidl-tools supports only Python 3.10).
In this option, we describe using this repository with the pyenv environment manager.
Step 1.1a: Make sure that you are using bash shell. If it is not bash shell, change it to bash. Verify it by typing:
echo ${SHELL}
Step 1.2a: Install system dependencies
sudo apt update
sudo apt install build-essential curl libbz2-dev libffi-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev libxml2-dev libxmlsec1-dev llvm make tk-dev xz-utils wget curl
sudo apt install -y libffi-dev libjpeg-dev zlib1g-dev graphviz graphviz-dev protobuf-compiler
Step 1.3a: Install pyenv using the following commands
curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
echo '# pyenv settings ' >> ${HOME}/.bashrc
echo 'command -v pyenv >/dev/null || export PATH=":${HOME}/.pyenv/bin:$PATH"' >> ${HOME}/.bashrc
echo 'eval "$(pyenv init -)"' >> ${HOME}/.bashrc
echo 'eval "$(pyenv virtualenv-init -)"' >> ${HOME}/.bashrc
echo '' >> ${HOME}/.bashrc
exec ${SHELL}
Further details on pyenv installation are given here https://github.com/pyenv/pyenv and https://github.com/pyenv/pyenv-installer
Step 1.4a: Install Python 3.10 in pyenv and create an environment
pyenv install 3.10
pyenv virtualenv 3.10 py310
pyenv rehash
pyenv activate py310
pip install --upgrade pip setuptools
Step 1.5a: Activate the Python environment. This activation step needs to be done everytime one starts a new terminal or shell. (Alternately, this also can be written to the .bashrc, so that this will be the default penv environment).
pyenv activate py310
Step 1.1b: Install docker if you don't have it already. The following steps are for installation on Ubuntu 18.04
./docker/docker_setup.sh
Step 1.2b: Build docker image:
./docker/docker_build.sh
Step 1.3b: Run docker container to bring up the container terminal on docker:
./docker/docker_run.sh
Source .bashrc to update the PATH
source /opt/.bashrc
Step 1.4b: During docker run, we map the parent directory of this folder to /opt/code This is to easily share code and data between the host and the docker container. Inside the docker terminal, change directory to where this folder is mapped to:
cd /opt/code/edgeai-modelmaker
This tool depends on several repositories that we have published at https://github.com/TexasInstruments
The following setup script can take care of cloning the required repositories and running their setup scripts.
./setup_all.sh
If the script runs sucessfully, you should have this directory structure:
parent_directory | |--edgeai-modelzoo |--edgeai-torchvision |--edgeai-mmdetection |--edgeai-benchmark |--edgeai-modelmaker
Your python environment will have several model compilation python packages from edgeai-tidl-tools installed. See it by running:
pip list | grep 'onnxruntime\|tflite\|tvm\|dlr\|osrt'
Also, PyTorch and its related packages will be installed (This torchvision package is installed from our fork called edgeai-torchvision). See it by running:
pip list | grep 'torch\|torchvision'
In setup_all.sh, there are flags to enable additional models:
PLUGINS_ENABLE_EXTRA: Setting this to 1 during setup enables additional models.
./run_modelmaker.sh <target_device> <config_file>
Object detection example
./run_modelmaker.sh TDA4VM config_detection.yaml
Image classification example
./run_modelmaker.sh TDA4VM config_classification.yaml
Where TDA4VM above is an example of target_device supported.
The list of target devices supported depends on the tidl-tools installed by edgeai-benchmark. Currently TDA4VM, AM68A, AM62A and AM69A are supported.
- This section explains how to create and annotate your own dataset with your own object classes.
- Data Annotation can be done in any suitable tool as long as the format of the annotated is supported in this repository. The following description to use Label Studio is just an example.
- The annotation file must be in COCO JSON format. LabelStudio supports exporting the dataset to COCO JSON format for Object Detection. For Image Classification, Label Studio can export in JSOM-Min format and this tool provides a converter script to convert to COCO JSON like format.
- Label Studio can be installed using the following command:
pip install -r requirements/labelstudio.txt
- Once installed, it can be launched by running
./run_labelstudio.sh
- Create a new project in Label Studio and give it a name in the "Project Name" tab.
- In the Data Import tab upload your images. (You can upload multiple times if your images are located in various folders in the source location).
- In the tab named "Labelling Setup" choose "Object Detction with Bounding Boxes" or "Image classification" depending on the task that you would like to annotate for.
- Remove the existing "Choices" and add your Label Choices (Object Types) that you would like to annotate. Clip on Save.
- Now the "project page" is shown with list of images and their previews.
- Now click on an image listed to go to the "Labelling" page. Select the object category for the given image. For Object detection also draw boxes around the objects of interest. (Before drawing a box make sure the correct label choice below the mage is selected).
- Do not forget to click "Submit" before moving on to the next image. The annotations done for an image is saved only when "Submit" is clicked.
- After annotating the required images, go back to the "project page", by clicking ont he project name displayed on top. From this page we can export the annotation.
- Export the annotation in COCO-JSON (For Object Detection) of JSON-MIN (For Image Classification). Do not export using the JSON format. COCO-JSON format exported by Label Studio can be directly accepted by this ModelMaker tool.
- However, the JSON-MIN format has to be converted to the COCO-JSON format by using an example given in run_convert_dataset.sh. For Image Classification task, use source_format as labelstudio_classification. Label Studio can also export into JSON-MIN for Object detection. In case you did that, use source_format as labelstudio_detection for the converter script.
- The dataset format is similar to that of the COCO dataset, but there are some changes as explained below.
- The annotated json file and images must be under a suitable folder with the dataset name.
- Under the folder with dataset name, the following folders must exist:
- (1) there must be an "images" folder containing the images
- (2) there must be an annotations folder containing the annotation json file with the name given below.
An object detection dataset should have the following structure.
data/datasets/dataset_name | |--images | |-- the image files should be here | |--annotations |--instances.json
- Use a suitable dataset name instead of dataset_name
- The default annotation file name for object detection is instances.json
- The format of the annotation file is similar to that of the COCO dataset 2017 Train/Val annotations - a json file containing 'info', 'images', 'categories' and 'annotations'. 'bbox' field in the annotation is required and is used as the ground truth.
- Look at the example dataset animal_classification to understand further.
- In the config file, provide the name of the dataset (dataset_name in this example) in the field dataset_name and provide the path or URL in the field input_data_path.
- Then the ModelMaker tool can be invoked with the config file.
An image classification dataset should have the following structure. (Use a suitable dataset name instead of dataset_name).
data/datasets/dataset_name | |--images | |-- the image files should be here | |--annotations |--instances.json
- Use a suitable dataset name instead of dataset_name
- The default annotation file name for image classification is instances.json
- The format of the annotation file is similar to that of the COCO dataset - a json file containing 'info', 'images', 'categories' and 'annotations'. However, one difference is that the 'bbox' or 'segmentation' information is not used for classification task and need not be present. The category information in each annotation (called the 'id' field) is needed.
- Look at the example dataset animal_detection to understand further.
- In the config file, provide the name of the dataset (dataset_name in this example) in the field dataset_name and provide the path or URL in the field input_data_path.
- Then the ModelMaker tool can be invoked with the config file.
An object detection dataset should have the following structure.
data/datasets/dataset_name | |--images | |-- the image files should be here | |--annotations |--instances.json
- Use a suitable dataset name instead of dataset_name
- The default annotation file name for object detection is instances.json
- The format of the annotation file is similar to that of the COCO dataset 2017 Train/Val annotations - a json file containing 'info', 'images', 'categories' and 'annotations'. 'segmentation' field in the annotation is required and is used as the ground truth.
- Look at the example dataset animal_classification to understand further.
- In the config file, provide the name of the dataset (dataset_name in this example) in the field dataset_name and provide the path or URL in the field input_data_path.
- Then the ModelMaker tool can be invoked with the config file.
If the dataset has already been split into train and validation set already, it is possible to provide those paths separately as a tuple in input_data_path.
After the model compilation, the compiled models will be available in a folder inside ./data/projects
If you have a dataset in another format, use the script provided to convert it into the COCO jSON format. See the examples given in run_convert_dataset.sh for example conversions.
The config file can be in .yaml or in .json format
Note: This section is for advanced users only. Familiarity with NVIDIA GPU and CUDA driver installation is assumed.
This tool can train models either on CPU or on GPUs. By default, CPU based training is used.
It is possible to speedup model training significantly using GPUs (with CUDA support) - if you have those GPUs in the PC. The PyTorch version that we install by default is not capable of supporting CUDA GPUs. There are additional steps to be followed to enable GPU support in training.
- In the file setup_all.sh, we are using setup_cpu.sh for several of the repositories that we are using. These will have to be changed to setup.sh before running setup_all.sh
- Install GPU driver and other tools as described in the sections below.
- In the config file, set a value for num_gpus to a value greater than 0 (should not exceed the number of GPUs in the system) to enable GPU based training.
The user has to install an appropriate NVIDIA GPU driver that supports the GPU being used.
The user also has to install CUDA Toolkit. See the CUDA download instructions. The CUDA version that is installed must match the CUDA version used in the PyTorch installer - see our edgeai-torchvision setup script to understand the CUDA version used.
Enabling CUDA GPU support inside a docker environment requires several additional steps. Please follow the instructions given in: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html
Once CUDA is installed, you will be able to model training much faster.
The compiled model has all the side information required to run the model on our Edge AI StarterKit EVM and SDK.
- Purchase the Edge AI StarterKit EVM and download the Edge AI StarterKit SDK to use our model deployment tools.
- For more information, see this link: https://www.ti.com/edgeai