Kitware / nrtk-explorer

DataSet Visualizer
Apache License 2.0
4 stars 2 forks source link

NRTK EXPLORER

NRTK Explorer is a web application for exploring image datasets. It provides insights of a image dataset in COCO format and it evaluate image transformation and perturbation resilience of object recognition DL models. It is built using trame by the kitware team.

nrtk explorer

Features

Usage

Usage example with virtual-env creation

# Setup python environment
python3 -m venv .venv
source .venv/bin/activate
pip install -U pip

# install application
pip install nrtk-explorer

# get some sample data
git clone https://github.com/vicentebolea/nrtk_explorer_datasets.git

# Run the application on given dataset (908 images)
nrtk-explorer --dataset ./nrtk_explorer_datasets/OIRDS_v1_0/oirds.json

nrtk explorer usage

Installing

Install it from pypi:

pip install nrtk-explorer

Or, download and install it manually with:

curl -OL https://github.com/Kitware/nrtk-explorer/archive/refs/heads/main.zip

Inside the application source code top directory, install it with:

pip install -e .

Run the application:

nrtk-explorer

CLI flags and options

Contribute to NRTK_EXPLORER

Run tests with:

pytest