Skip to content

neuromorphicsystems/undrdg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UNDRDG provides building blocks to convert existing datasets to the UNDR format.

The scripts used to convert the datasets that we re-distribute can be found in scripts. The converted datasets can be browsed at https://www.undr.space.

Use UNDRDG in your own project

python3 -m pip install undrdg

See scripts for usage examples.

Add scripts to this directory

python3 -m venv .venv
source .venv/bin/activate
pip install -r scripts/requirements.txt

Contribute to UNDRDG

  1. Install the development version
python3 -m venv .venv
source .venv/bin/activate
pip remove undrdg # to avoid name clashes
pip install -e .
  1. Edit files in undrg. Changes are automatically reflected in scripts that import the library.

  2. Format and lint.

isort .; black .; pyright .