You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
568 B
Markdown
37 lines
568 B
Markdown
# Dataset framework
|
|
|
|
A framework to prepare, manage, build, analyze datasets
|
|
|
|
## Documentation
|
|
|
|
-[Quick start guide](docs/quickstart.md)
|
|
|
|
## Installation
|
|
|
|
Python3.5+ is required.
|
|
|
|
To install into a virtual environment do:
|
|
|
|
``` bash
|
|
python -m pip install virtualenv
|
|
python -m virtualenv venv
|
|
. venv/bin/activate
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
## Execution
|
|
|
|
The tool can be executed both as a script and as a module.
|
|
|
|
``` bash
|
|
PYTHONPATH="..."
|
|
python -m datumaro <command>
|
|
python path/to/datum.py
|
|
```
|
|
|
|
## Testing
|
|
|
|
``` bash
|
|
python -m unittest discover -s tests
|
|
```
|