Hamze-Hammami commited on
Commit
82c29a2
·
verified ·
1 Parent(s): 49c93c1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -2
README.md CHANGED
@@ -11,10 +11,25 @@ Welcome to the **Isaac Point Cloud** repository! the HF repos is to pull the mod
11
 
12
 
13
  ## 🏗️ Model Architecture
14
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6661eeceec18341b26730305/n2CwpEqCpqskoQS3ggbhy.png)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
  ## instllation and setup
17
- via Githib: https://github.com/Hamze-Hammami/Issac-Point-Net
18
 
19
 
20
 
 
11
 
12
 
13
  ## 🏗️ Model Architecture
14
+ # PointNet Model Architecture
15
+
16
+ | Layer | Type | Input Channels | Output Channels | Kernel Size | Activation |
17
+ |:----------|:------------|-----------------:|------------------:|:--------------|:------------------|
18
+ | conv1 | Conv1D | 3 | 64 | 1 | ReLU |
19
+ | bn1 | BatchNorm1D | 64 | 64 | - | - |
20
+ | conv2 | Conv1D | 64 | 128 | 1 | ReLU |
21
+ | bn2 | BatchNorm1D | 128 | 128 | - | - |
22
+ | conv3 | Conv1D | 128 | 256 | 1 | ReLU |
23
+ | bn3 | BatchNorm1D | 256 | 256 | - | - |
24
+ | conv4 | Conv1D | 256 | 512 | 1 | ReLU |
25
+ | bn4 | BatchNorm1D | 512 | 512 | - | - |
26
+ | conv5 | Conv1D | 512 | 1024 | 1 | ReLU |
27
+ | bn5 | BatchNorm1D | 1024 | 1024 | - | - |
28
+ | conv_obj | Conv1D | 1024 | 1 | 1 | Sigmoid |
29
+ | conv_bbox | Conv1D | 1024 | 6 | 1 | None (Raw Output) |
30
 
31
  ## instllation and setup
32
+ via Github: https://github.com/Hamze-Hammami/Issac-Point-Net
33
 
34
 
35