All Projects → lyft → Nuscenes Devkit

lyft / Nuscenes Devkit

Licence: other
Devkit for the public 2019 Lyft Level 5 AV Dataset (fork of https://github.com/nutonomy/nuscenes-devkit)

Projects that are alternatives of or similar to Nuscenes Devkit

Human Segmentation Pytorch
Human segmentation models, training/inference code, and trained weights, implemented in PyTorch
Stars: ✭ 289 (-3.34%)
Mutual labels:  jupyter-notebook
Ocropy
Python-based tools for document analysis and OCR
Stars: ✭ 3,138 (+949.5%)
Mutual labels:  jupyter-notebook
Hiecoattenvqa
Stars: ✭ 298 (-0.33%)
Mutual labels:  jupyter-notebook
Zero to deep learning video
Repository for the Zero to Deep Learning® Video Course
Stars: ✭ 296 (-1%)
Mutual labels:  jupyter-notebook
Xhamster analysis
The data analysiser and predictor of https://xhamster.com/
Stars: ✭ 297 (-0.67%)
Mutual labels:  jupyter-notebook
Pyprobml
Python code for "Machine learning: a probabilistic perspective" (2nd edition)
Stars: ✭ 4,197 (+1303.68%)
Mutual labels:  jupyter-notebook
Lyrics Conditioned Neural Melody Generation
Stars: ✭ 296 (-1%)
Mutual labels:  jupyter-notebook
Scipy2014 tutorial
Tutorial: Bayesian Statistical Analysis in Python
Stars: ✭ 299 (+0%)
Mutual labels:  jupyter-notebook
Cascaded Fcn
Source code for the MICCAI 2016 Paper "Automatic Liver and Lesion Segmentation in CT Using Cascaded Fully Convolutional NeuralNetworks and 3D Conditional Random Fields"
Stars: ✭ 296 (-1%)
Mutual labels:  jupyter-notebook
Public plstm
Phased LSTM
Stars: ✭ 298 (-0.33%)
Mutual labels:  jupyter-notebook
Master
A machine learning course using Python, Jupyter Notebooks, and OpenML
Stars: ✭ 297 (-0.67%)
Mutual labels:  jupyter-notebook
Amazon Forecast Samples
Notebooks and examples on how to onboard and use various features of Amazon Forecast.
Stars: ✭ 296 (-1%)
Mutual labels:  jupyter-notebook
Nerf
Code release for NeRF (Neural Radiance Fields)
Stars: ✭ 4,062 (+1258.53%)
Mutual labels:  jupyter-notebook
Ethereum future
This is the Code for "Ethereum Future Prices" by Siraj Raval on Youtube
Stars: ✭ 294 (-1.67%)
Mutual labels:  jupyter-notebook
Nbsphinx
📒 Sphinx source parser for Jupyter notebooks
Stars: ✭ 297 (-0.67%)
Mutual labels:  jupyter-notebook
Pytorch Nlp Notebooks
Learn how to use PyTorch to solve some common NLP problems with deep learning.
Stars: ✭ 293 (-2.01%)
Mutual labels:  jupyter-notebook
Tensorwatch
Debugging, monitoring and visualization for Python Machine Learning and Data Science
Stars: ✭ 3,191 (+967.22%)
Mutual labels:  jupyter-notebook
Introduction To Machine Learning
Stars: ✭ 199 (-33.44%)
Mutual labels:  jupyter-notebook
Ipyvega
IPython/Jupyter notebook module for Vega and Vega-Lite
Stars: ✭ 297 (-0.67%)
Mutual labels:  jupyter-notebook
Pycaret
An open-source, low-code machine learning library in Python
Stars: ✭ 4,594 (+1436.45%)
Mutual labels:  jupyter-notebook

Lyft Dataset SDK

Welcome to the devkit for the Lyft Level 5 AV dataset! This devkit shall help you to visualise and explore our dataset.

Release Notes

This devkit is based on a version of the nuScenes devkit.

Getting Started

Installation

You can use pip to install lyft-dataset-sdk:

pip install -U lyft_dataset_sdk

If you want to get the latest version of the code before it is released on PyPI you can install the library from GitHub:

pip install -U git+https://github.com/lyft/nuscenes-devkit

Dataset Download

Go to https://level5.lyft.com/dataset/ to download the Lyft Level 5 AV Dataset.

The dataset is also availible as a part of the Lyft 3D Object Detection for Autonomous Vehicles Challenge.

Utils for converting LEVEL5 data into Kitti format

Simply run
python -m lyft_dataset_sdk.utils.export_kitti nuscenes_gt_to_kitti --lyft_dataroot ${DS_PTH} --table_folder ${TBL_PTH}
for converting data.
See help ( python -m lyft_dataset_sdk.utils.export_kitti nuscenes_gt_to_kitti --help ) for more information.
You can draw results after converting with utils:
python -m lyft_dataset_sdk.utils.export_kitti render_kitti

Tutorial and Reference Model

Check out the tutorial and reference model README.

Dataset structure

The dataset contains of json files:

  1. scene.json - 25-45 seconds snippet of a car's journey.
  2. sample.json - An annotated snapshot of a scene at a particular timestamp.
  3. sample_data.json - Data collected from a particular sensor.
  4. sample_annotation.json - An annotated instance of an object within our interest.
  5. instance.json - Enumeration of all object instance we observed.
  6. category.json - Taxonomy of object categories (e.g. vehicle, human).
  7. attribute.json - Property of an instance that can change while the category remains the same.
  8. visibility.json - (currently not used)
  9. sensor.json - A specific sensor type.
  10. calibrated_sensor.json - Definition of a particular sensor as calibrated on a particular vehicle.
  11. ego_pose.json - Ego vehicle poses at a particular timestamp.
  12. log.json - Log information from which the data was extracted.
  13. map.json - Map data that is stored as binary semantic masks from a top-down view.

With the schema.

Data Exploration Tutorial

To get started with the Lyft Dataset SDK, run the tutorial using Jupyter Notebook.

Contributing

We would be happy to accept issue reports and pull requests from the community.

For creating pull requests follow our contributing guide.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].