File size: 1,162 Bytes
a089003 308acfe a089003 85c6c64 a089003 85c6c64 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
---
library_name: tf-keras
license: apache-2.0
tags:
- image-classification
- image-segmentation
---
## Model Description
### Keras Implementation of Point cloud classification with PointNet
This repo contains the trained model of [Point cloud classification with PointNet](https://keras.io/examples/vision/pointnet/).
The full credit goes to: [David Griffiths](https://dgriffiths3.github.io/)
## Intended uses & limitations
- As stated in the paper, PointNet is 3D perception model, applying deep learning to point clouds for object classification and scene semantic segmentation.
- PointNet takes raw point cloud data as input, which is typically collected from either a lidar or radar sensor.
## Training and evaluation data
- The dataset used for training is ModelNet10, the smaller 10 class version of the ModelNet40 dataset.
## Training procedure
### Training hyperparameter
The following hyperparameters were used during training:
- optimizer: 'adam'
- loss: 'sparse_categorical_crossentropy'
- epochs: 20
- batch_size: 32
- learning_rate: 0.001
## Model Plot
<details>
<summary>View Model Plot</summary>

</details> |