-
Notifications
You must be signed in to change notification settings - Fork 1
/
dprn_8layers_add_after_selu.py
125 lines (95 loc) · 4.57 KB
/
dprn_8layers_add_after_selu.py
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# -*- coding: utf-8 -*-
"""
Created on Tue Jun 26 18:03:47 2018
@author: saira
"""
import tensorflow as tf
import numpy as np
import util
import selu
import sys
import os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
conv3p_module = tf.load_op_library(BASE_DIR + '/tf_ops/conv3p/tf_conv3p.so')
def conv3p(points_tensor, input_tensor, kernel_tensor, stride, voxel_size):
return conv3p_module.conv3p(points_tensor, input_tensor, kernel_tensor, stride, voxel_size);
@tf.RegisterGradient('Conv3p')
def _conv3p_grad(op, grad_from_next_layer):
"""The derivatives for convolution.
Args:
op: the convolution op.
grad_from_next_layer: the tensor representing the gradient w.r.t. the output
Returns:
the gradients w.r.t. the point tensor, input tensor, and the filter
"""
points = op.inputs[0]
input = op.inputs[1]
filter = op.inputs[2]
stride = op.inputs[3]
voxel_size = op.inputs[4]
input_grad, filter_grad = conv3p_module.conv3p_grad(grad_from_next_layer, points, input, filter, stride, voxel_size)
return [None, input_grad, filter_grad, None, None]
class PointConvNet:
def __init__(self, num_class):
self.num_class = num_class
def model(self, points_tensor, input_tensor, is_training=True):
"""
Arguments:
points_tensor: [b, n, 3] point cloud
input_tensor: [b, n, channels] extra data defined for each point
"""
b = points_tensor.get_shape()[0].value
n = points_tensor.get_shape()[1].value
in_channels = input_tensor.get_shape()[2].value
voxel_size = tf.constant([0.1])
stride = tf.constant([1, 1, 1])
filter1_tensor = tf.get_variable("filter1", [3, 3, 3, in_channels, 9])
conv1 = conv3p(points_tensor, input_tensor,filter1_tensor, stride, voxel_size);
relu1 = selu.selu(conv1)
stride = tf.constant([2, 2, 2])
filter2_tensor = tf.get_variable("filter2", [3, 3, 3, 9, 9])
conv2 = conv3p(points_tensor,relu1, filter2_tensor, stride, voxel_size);
relu2 = selu.selu(conv2)
stride = tf.constant([3, 3, 3])
filter3_tensor = tf.get_variable("filter3", [3, 3, 3, 9, 9])
conv3 = conv3p(points_tensor, relu2, filter3_tensor, stride, voxel_size);
relu3 = selu.selu(conv3)
skipCon = tf.add(relu1, relu3, name =None)
stride = tf.constant([4, 4, 4])
filter4_tensor = tf.get_variable("filter4", [3, 3, 3,9, 9])
conv4 = conv3p(points_tensor, skipCon,filter4_tensor, stride, voxel_size);
relu4 = selu.selu(conv4)
stride = tf.constant([5, 5, 5])
filter5_tensor = tf.get_variable("filter5", [3, 3, 3, 9 , 9])
conv5 = conv3p(points_tensor, relu4, filter5_tensor, stride, voxel_size);
relu5 = selu.selu(conv5)
skipCon2 = tf.add(relu3, relu5, name =None)
stride = tf.constant([6, 6, 6])
filter6_tensor = tf.get_variable("filter6", [3, 3, 3, 9, 9])
conv6 = conv3p(points_tensor, skipCon2, filter6_tensor, stride, voxel_size);
relu6 = selu.selu(conv6)
stride = tf.constant([7, 7, 7])
filter7_tensor = tf.get_variable("filter7", [3, 3, 3, 9, 9])
conv7 = conv3p(points_tensor, relu6 ,filter7_tensor, stride, voxel_size);
relu7 = selu.selu(conv7)
skipCon3 = tf.add(relu5, relu7, name =None)
stride = tf.constant([8, 8, 8])
filter8_tensor = tf.get_variable("filter8", [3, 3, 3, 9, 9])
conv8 = conv3p(points_tensor, skipCon3, filter8_tensor, stride, voxel_size);
relu8 = selu.selu(conv8)
feat = tf.concat([relu1, relu2, skipCon, relu4, skipCon2, relu6, skipCon3, relu8], axis=2) #local features
view = tf.reshape(feat, [-1, n * 72]) #global feature
fc1 = tf.contrib.layers.fully_connected(view, 512, activation_fn=selu.selu)
dropout = selu.dropout_selu(x=fc1, rate=0.5, training=is_training)
fc2 = tf.contrib.layers.fully_connected(dropout, self.num_class, activation_fn=selu.selu)
return fc2
def loss(self, logits, labels):
"""
Arguments:
logits: prediction with shape [batch_size, num_class]
labels: ground truth scalar labels with shape [batch_size]
"""
#onehot_labels = tf.one_hot(labels, depth=self.num_class)
#e = tf.losses.softmax_cross_entropy(onehot_labels, logits)
e = tf.reduce_mean(tf.nn.sparse_softmax_cross_entropy_with_logits(logits=logits, labels=labels))
return e