Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isaaccorley/simpleview-pytorch
PyTorch implementation of SimpleView from "Revisiting Point Cloud Classification with a Simple and Effective Baseline", Goyal et al. (2020)
https://github.com/isaaccorley/simpleview-pytorch
3d-vision artificial-intelligence deep-learning point-cloud-classification point-clouds pytorch
Last synced: 3 months ago
JSON representation
PyTorch implementation of SimpleView from "Revisiting Point Cloud Classification with a Simple and Effective Baseline", Goyal et al. (2020)
- Host: GitHub
- URL: https://github.com/isaaccorley/simpleview-pytorch
- Owner: isaaccorley
- License: mit
- Created: 2021-04-01T03:26:55.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-01T03:45:28.000Z (almost 4 years ago)
- Last Synced: 2024-08-01T03:44:48.972Z (5 months ago)
- Topics: 3d-vision, artificial-intelligence, deep-learning, point-cloud-classification, point-clouds, pytorch
- Language: Python
- Homepage:
- Size: 77.1 KB
- Stars: 14
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simpleview-pytorch
PyTorch implementation of SimpleView from ["Revisiting Point Cloud Classification with a Simple and Effective Baseline"](https://openreview.net/forum?id=XwATtbX3oCz)## Usage
```python
import torch
from simpleview_pytorch import SimpleViewmodel = 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)
```