📚 Docs | 📊 Slides | 📝 Blogpost (coming soon) |
Sphinx docs is available here:
pip install lours
You can also install the pre-release by adding the --pre
option
pip install lours --pre
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
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)
See some notebooks in folder docs/notebooks
Alternatively, See https://lours.readthedocs.io/stable/tutorials.html