Skip to content

PyTorch implementation of SimpleView from "Revisiting Point Cloud Classification with a Simple and Effective Baseline", Goyal et al. (2020)

License

Notifications You must be signed in to change notification settings

isaaccorley/simpleview-pytorch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simpleview-pytorch

PyTorch implementation of SimpleView from "Revisiting Point Cloud Classification with a Simple and Effective Baseline"

Usage

import torch
from simpleview_pytorch import SimpleView

model = SimpleView(
    num_views=6,
    num_classes=10
)

# depth 'images' generated from n views of point cloud
# [bs, n, c, h, w]
views = torch.randn(1, 6, 1, 128, 128)

model(views) # (1, 10)

About

PyTorch implementation of SimpleView from "Revisiting Point Cloud Classification with a Simple and Effective Baseline", Goyal et al. (2020)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages