README#

Lours, the pandas companion
DOC API#
Sphinx docs is available here:
Installation#
pip install lours
You can also install the pre-release by adding the --pre option
pip install lours --pre
From source#
pip
pip install -e . # Only for pip > 21.3
poetry >= 1.2
Assuming both lours and your project are in the same folder, adapt the relative path of the repo if needed
poetry add --editable ../lours/
poetry add --editable https://github.com/XXII-AI/lours.git
The dataset object#
Usage#
from lours.dataset import from_caipy, from_coco
dataset1 = from_caipy("path/to/caipy")
print(dataset1)
dataset2 = from_coco("path/to/coco", images_root="/path/to/coco_images")
dataset2 = dataset2.remap_from_preset("coco", "pascalvoc")
print(dataset2)
Tutorials#
See some notebooks in folder docs/notebooks
Alternatively, See https://lours.readthedocs.io/stable/tutorials