Git Product home page Git Product logo

deeppointcloud-benchmarks's Introduction

Project Logo

This is a framework for running common deep learning models for point cloud analysis tasks against classic benchmark. It heavily relies on pytorch geometric and hydra core.

Documentation | Pytorch Geometric | Facebook Hydra

The framework allows lean and yet complex model to be built with minimum effort and great reproducibility.

COMPACT API

  # PointNet++: Deep Hierarchical Feature Learning on Point Sets in a Metric Space (https://arxiv.org/abs/1706.02413)
  pointnet2:
      type: pointnet2
      down_conv:
          module_name: SAModule
          ratios: [0.2, 0.25]
          radius: [0.2, 0.4]
          down_conv_nn: [[FEAT + 3, 64, 64, 128], [128 + 3, 128, 128, 256]]
      up_conv:
          module_name: FPModule
          up_conv_nn: [[1024 + 256, 256, 256], [256 + 128, 256, 128], [128 + FEAT, 128, 128, 128]]
          up_k: [1, 3, 3]   
          skip: True    
      innermost:
          module_name: GlobalBaseModule
          aggr: max
          nn: [256 + 3, 256, 512, 1024]
      mlp_cls: 
          nn: [128, 128, 128, 128, 128]
          dropout: 0.5

Getting started

You will first need to install poetry in order to setup a virtual environments and install the relevant packages, then run

poetry install

This will install all required dependencies in a new virtual environment.

Train pointnet++ on Segmentation task for dataset shapenet

poetry run python train.py experiment.name=pointnet2 experiment.data=shapenet

And you should see something like that

logging

Benchmark

S3DIS

RSConv 2LD

Contributing

We use autopep8 for formating with the following options: --max-line-length 120 --ignore E402,E226,E24,W50,W690

Contributers

deeppointcloud-benchmarks's People

Contributors

nicolas-chaulet avatar tchaton avatar tristanheywood avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.