All Projects → optas → Latent_3d_points

optas / Latent_3d_points

Licence: other
Auto-encoding & Generating 3D Point-Clouds.

Projects that are alternatives of or similar to Latent 3d points

Bap
Bayesian Analysis with Python (Second Edition)
Stars: ✭ 379 (-1.56%)
Mutual labels:  jupyter-notebook
Python4datascience.ch
从0开始接触Python处理数据科学问题。包含Python0基础入门、科学计算工具入门、数学与计算机基础入门、统计学习入门。
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
Human Activity Recognition Using Cnn
Convolutional Neural Network for Human Activity Recognition in Tensorflow
Stars: ✭ 382 (-0.78%)
Mutual labels:  jupyter-notebook
Deep Reinforcement Learning
Repo for the Deep Reinforcement Learning Nanodegree program
Stars: ✭ 4,012 (+942.08%)
Mutual labels:  jupyter-notebook
Deep Learning From Scratch
深度学习入门-基于Python的理论与实现》,包含源代码和高清PDF(带书签);慕课网imooc《深度学习之神经网络(CNN-RNN-GAN)算法原理-实战》
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
Yolo V5
🎨 Pytorch YOLO v5 训练自己的数据集超详细教程!!! 🎨 (提供PDF训练教程下载)
Stars: ✭ 379 (-1.56%)
Mutual labels:  jupyter-notebook
Java Guide
A guide of modern Java (Java 17)
Stars: ✭ 378 (-1.82%)
Mutual labels:  jupyter-notebook
Dawp
Jupyter Notebooks and code for Derivatives Analytics with Python (Wiley Finance) by Yves Hilpisch.
Stars: ✭ 383 (-0.52%)
Mutual labels:  jupyter-notebook
Daily Deeplearning
🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
Bayesian Neural Network Blogpost
Building a Bayesian deep learning classifier
Stars: ✭ 382 (-0.78%)
Mutual labels:  jupyter-notebook
Augmented Neural Odes
Pytorch implementation of Augmented Neural ODEs 🌻
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
Deep Learning In Python
Hands-on, practical knowledge of how to use neural networks and deep learning with Keras 2.0
Stars: ✭ 379 (-1.56%)
Mutual labels:  jupyter-notebook
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
Caiman
Computational toolbox for large scale Calcium Imaging Analysis, including movie handling, motion correction, source extraction, spike deconvolution and result visualization.
Stars: ✭ 378 (-1.82%)
Mutual labels:  jupyter-notebook
2020 benfords
Stars: ✭ 384 (-0.26%)
Mutual labels:  jupyter-notebook
Financeops
Research in investment finance with Python Notebooks
Stars: ✭ 378 (-1.82%)
Mutual labels:  jupyter-notebook
Powerlaw
Stars: ✭ 379 (-1.56%)
Mutual labels:  jupyter-notebook
Transformers Tutorials
Github repo with tutorials to fine tune transformers for diff NLP tasks
Stars: ✭ 384 (-0.26%)
Mutual labels:  jupyter-notebook
2019 Cs109a
https://harvard-iacs.github.io/2019-CS109A/
Stars: ✭ 384 (-0.26%)
Mutual labels:  jupyter-notebook
Vpgnet
VPGNet: Vanishing Point Guided Network for Lane and Road Marking Detection and Recognition (ICCV 2017)
Stars: ✭ 382 (-0.78%)
Mutual labels:  jupyter-notebook

Learning Representations and Generative Models For 3D Point Clouds

Created by Panos Achlioptas, Olga Diamanti, Ioannis Mitliagkas, Leonidas J. Guibas.

representative

Introduction

This work is based on our arXiv tech report. We proposed a novel deep net architecture for auto-encoding point clouds. The learned representations were amenable to semantic part editting, shape analogies, linear classification and shape interpolations.

Citation

If you find our work useful in your research, please consider citing:

@article{achlioptas2017latent_pc,
  title={Learning Representations and Generative Models For 3D Point Clouds},
  author={Achlioptas, Panos and Diamanti, Olga and Mitliagkas, Ioannis and Guibas, Leonidas J},
  journal={arXiv preprint arXiv:1707.02392},
  year={2017}
}

Dependencies

Requirements:

Our code has been tested with Python 2.7, TensorFlow 1.3.0, TFLearn 0.3.2, CUDA 8.0 and cuDNN 6.0 on Ubuntu 14.04.

Installation

Download the source code from the git repository:

git clone https://github.com/optas/latent_3d_points

To be able to train your own model you need first to compile the EMD/Chamfer losses. In latent_3d_points/external/structural_losses we have included the cuda implementations of Fan et. al.

cd latent_3d_points/external

with your editor modify the first three lines of the makefile to point to 
your nvcc, cudalib and tensorflow library.

make

Data Set

We provide ~57K point-clouds, each sampled from a mesh model of ShapeNetCore with (area) uniform sampling. To download them (1.4GB):

cd latent_3d_points/
./download_data.sh

The point-clouds will be stored in latent_3d_points/data/shape_net_core_uniform_samples_2048

Use the function snc_category_to_synth_id, defined in src/in_out/, to map a class name such as "chair" to its synthetic_id: "03001627". Point-clouds of models of the same class are stored under a commonly named folder.

Usage

To train a point-cloud AE look at:

latent_3d_points/notebooks/train_single_class_ae.ipynb

To train a latent-GAN based on a pre-trained AE look at:

latent_3d_points/notebooks/train_latent_gan.ipynb

To train a raw-GAN:

latent_3d_points/notebooks/train_raw_gan.ipynb    

To use the evaluation metrics (MMD, Coverage, JSD) between two point-cloud sets look at:

latent_3d_points/notebooks/compute_evaluation_metrics.ipynb

License

This project is licensed under the terms of the MIT license (see LICENSE.md for details).

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].