File size: 17,896 Bytes
912c7e2 | 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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 | """ Adapted from https://github.com/ma-xu/pointMLP-pytorch/blob/main/classification_ScanObjectNN/models/pointmlp.py """
import torch
import torch.nn as nn
import torch.nn.functional as F
from pytorch3d.ops import sample_farthest_points, knn_points
def get_activation(activation):
if activation.lower() == "gelu":
return nn.GELU()
elif activation.lower() == "rrelu":
return nn.RReLU(inplace=True)
elif activation.lower() == "selu":
return nn.SELU(inplace=True)
elif activation.lower() == "silu":
return nn.SiLU(inplace=True)
elif activation.lower() == "hardswish":
return nn.Hardswish(inplace=True)
elif activation.lower() == "leakyrelu":
return nn.LeakyReLU(inplace=True)
else:
return nn.ReLU(inplace=True)
def square_distance(src, dst):
"""
Calculate Euclid distance between each two points.
src^T * dst = xn * xm + yn * ym + zn * zm;
sum(src^2, dim=-1) = xn*xn + yn*yn + zn*zn;
sum(dst^2, dim=-1) = xm*xm + ym*ym + zm*zm;
dist = (xn - xm)^2 + (yn - ym)^2 + (zn - zm)^2
= sum(src**2,dim=-1)+sum(dst**2,dim=-1)-2*src^T*dst
Input:
src: source points, [B, N, C]
dst: target points, [B, M, C]
Output:
dist: per-point square distance, [B, N, M]
"""
B, N, _ = src.shape
_, M, _ = dst.shape
dist = -2 * torch.matmul(src, dst.permute(0, 2, 1))
dist += torch.sum(src**2, -1).view(B, N, 1)
dist += torch.sum(dst**2, -1).view(B, 1, M)
return dist
def index_points(points, idx):
"""
Input:
points: input points data, [B, N, C]
idx: sample index data, [B, S]
Return:
new_points:, indexed points data, [B, S, C]
"""
device = points.device
B = points.shape[0]
view_shape = list(idx.shape)
view_shape[1:] = [1] * (len(view_shape) - 1)
repeat_shape = list(idx.shape)
repeat_shape[0] = 1
batch_indices = (
torch.arange(B, dtype=torch.long).to(device).view(view_shape).repeat(repeat_shape)
)
new_points = points[batch_indices, idx, :]
return new_points
def farthest_point_sample(xyz, npoint):
"""
Input:
xyz: pointcloud data, [B, N, 3]
npoint: number of samples
Return:
centroids: sampled pointcloud index, [B, npoint]
"""
device = xyz.device
B, N, C = xyz.shape
centroids = torch.zeros(B, npoint, dtype=torch.long).to(device)
distance = torch.ones(B, N).to(device) * 1e10
farthest = torch.randint(0, N, (B,), dtype=torch.long).to(device)
batch_indices = torch.arange(B, dtype=torch.long).to(device)
for i in range(npoint):
centroids[:, i] = farthest
centroid = xyz[batch_indices, farthest, :].view(B, 1, 3)
dist = torch.sum((xyz - centroid) ** 2, -1)
distance = torch.min(distance, dist)
farthest = torch.max(distance, -1)[1]
return centroids
def query_ball_point(radius, nsample, xyz, new_xyz):
"""
Input:
radius: local region radius
nsample: max sample number in local region
xyz: all points, [B, N, 3]
new_xyz: query points, [B, S, 3]
Return:
group_idx: grouped points index, [B, S, nsample]
"""
device = xyz.device
B, N, C = xyz.shape
_, S, _ = new_xyz.shape
group_idx = torch.arange(N, dtype=torch.long).to(device).view(1, 1, N).repeat([B, S, 1])
sqrdists = square_distance(new_xyz, xyz)
group_idx[sqrdists > radius**2] = N
group_idx = group_idx.sort(dim=-1)[0][:, :, :nsample]
group_first = group_idx[:, :, 0].view(B, S, 1).repeat([1, 1, nsample])
mask = group_idx == N
group_idx[mask] = group_first[mask]
return group_idx
def knn_point(nsample, xyz, new_xyz):
"""
Input:
nsample: max sample number in local region
xyz: all points, [B, N, C]
new_xyz: query points, [B, S, C]
Return:
group_idx: grouped points index, [B, S, nsample]
"""
sqrdists = square_distance(new_xyz, xyz)
_, group_idx = torch.topk(sqrdists, nsample, dim=-1, largest=False, sorted=False)
return group_idx
class LocalGrouper(nn.Module):
def __init__(self, channel, groups, kneighbors, use_xyz=True, normalize="center", **kwargs):
"""
Give xyz[b,p,3] and fea[b,p,d], return new_xyz[b,g,3] and new_fea[b,g,k,d]
:param groups: groups number
:param kneighbors: k-nerighbors
:param kwargs: others
"""
super(LocalGrouper, self).__init__()
self.groups = groups
self.kneighbors = kneighbors
self.use_xyz = use_xyz
if normalize is not None:
self.normalize = normalize.lower()
else:
self.normalize = None
if self.normalize not in ["center", "anchor"]:
print(
"Unrecognized normalize parameter (self.normalize), set to None. Should be one of [center, anchor]."
)
self.normalize = None
if self.normalize is not None:
add_channel = 3 if self.use_xyz else 0
self.affine_alpha = nn.Parameter(torch.ones([1, 1, 1, channel + add_channel]))
self.affine_beta = nn.Parameter(torch.zeros([1, 1, 1, channel + add_channel]))
def forward(self, xyz, points):
B, N, C = xyz.shape
S = self.groups
xyz = xyz.contiguous() # xyz [btach, points, xyz]
# fps_idx = torch.multinomial(torch.linspace(0, N - 1, steps=N).repeat(B, 1).to(xyz.device), num_samples=self.groups, replacement=False).long()
# fps_idx = farthest_point_sample(xyz, self.groups).long()
# fps_idx = pointnet2_utils.furthest_point_sample(xyz, self.groups).long() # [B, npoint]
new_xyz, fps_idx = sample_farthest_points(xyz, K=self.groups)
# new_xyz = index_points(xyz, fps_idx) # [B, npoint, 3]
new_points = index_points(points, fps_idx) # [B, npoint, d]
# idx = knn_point(self.kneighbors, xyz, new_xyz)
_, idx, _ = knn_points(new_xyz, xyz, K=self.kneighbors, return_nn=False)
# idx = query_ball_point(radius, nsample, xyz, new_xyz)
grouped_points = index_points(points, idx) # [B, npoint, k, d]
if self.use_xyz:
grouped_xyz = index_points(xyz, idx) # [B, npoint, k, 3]
grouped_points = torch.cat([grouped_points, grouped_xyz], dim=-1) # [B, npoint, k, d+3]
if self.normalize is not None:
if self.normalize == "center":
mean = torch.mean(grouped_points, dim=2, keepdim=True)
if self.normalize == "anchor":
mean = torch.cat([new_points, new_xyz], dim=-1) if self.use_xyz else new_points
mean = mean.unsqueeze(dim=-2) # [B, npoint, 1, d+3]
std = (
torch.std((grouped_points - mean).reshape(B, -1), dim=-1, keepdim=True)
.unsqueeze(dim=-1)
.unsqueeze(dim=-1)
)
grouped_points = (grouped_points - mean) / (std + 1e-5)
grouped_points = self.affine_alpha * grouped_points + self.affine_beta
new_points = torch.cat(
[grouped_points, new_points.view(B, S, 1, -1).repeat(1, 1, self.kneighbors, 1)], dim=-1
)
return new_xyz, new_points
class ConvBNReLU1D(nn.Module):
def __init__(self, in_channels, out_channels, kernel_size=1, bias=True, activation="relu"):
super(ConvBNReLU1D, self).__init__()
self.act = get_activation(activation)
self.net = nn.Sequential(
nn.Conv1d(
in_channels=in_channels,
out_channels=out_channels,
kernel_size=kernel_size,
bias=bias,
),
nn.BatchNorm1d(out_channels),
self.act,
)
def forward(self, x):
return self.net(x)
class ConvBNReLURes1D(nn.Module):
def __init__(
self, channel, kernel_size=1, groups=1, res_expansion=1.0, bias=True, activation="relu"
):
super(ConvBNReLURes1D, self).__init__()
self.act = get_activation(activation)
self.net1 = nn.Sequential(
nn.Conv1d(
in_channels=channel,
out_channels=int(channel * res_expansion),
kernel_size=kernel_size,
groups=groups,
bias=bias,
),
nn.BatchNorm1d(int(channel * res_expansion)),
self.act,
)
if groups > 1:
self.net2 = nn.Sequential(
nn.Conv1d(
in_channels=int(channel * res_expansion),
out_channels=channel,
kernel_size=kernel_size,
groups=groups,
bias=bias,
),
nn.BatchNorm1d(channel),
self.act,
nn.Conv1d(
in_channels=channel, out_channels=channel, kernel_size=kernel_size, bias=bias
),
nn.BatchNorm1d(channel),
)
else:
self.net2 = nn.Sequential(
nn.Conv1d(
in_channels=int(channel * res_expansion),
out_channels=channel,
kernel_size=kernel_size,
bias=bias,
),
nn.BatchNorm1d(channel),
)
def forward(self, x):
return self.act(self.net2(self.net1(x)) + x)
class PreExtraction(nn.Module):
def __init__(
self,
channels,
out_channels,
blocks=1,
groups=1,
res_expansion=1,
bias=True,
activation="relu",
use_xyz=True,
):
"""
input: [b,g,k,d]: output:[b,d,g]
:param channels:
:param blocks:
"""
super(PreExtraction, self).__init__()
in_channels = 3 + 2 * channels if use_xyz else 2 * channels
self.transfer = ConvBNReLU1D(in_channels, out_channels, bias=bias, activation=activation)
operation = []
for _ in range(blocks):
operation.append(
ConvBNReLURes1D(
out_channels,
groups=groups,
res_expansion=res_expansion,
bias=bias,
activation=activation,
)
)
self.operation = nn.Sequential(*operation)
def forward(self, x):
b, n, s, d = x.size() # torch.Size([32, 512, 32, 6])
x = x.permute(0, 1, 3, 2)
x = x.reshape(-1, d, s)
x = self.transfer(x)
batch_size, _, _ = x.size()
x = self.operation(x) # [b, d, k]
x = F.adaptive_max_pool1d(x, 1).view(batch_size, -1)
x = x.reshape(b, n, -1).permute(0, 2, 1)
return x
class PosExtraction(nn.Module):
def __init__(self, channels, blocks=1, groups=1, res_expansion=1, bias=True, activation="relu"):
"""
input[b,d,g]; output[b,d,g]
:param channels:
:param blocks:
"""
super(PosExtraction, self).__init__()
operation = []
for _ in range(blocks):
operation.append(
ConvBNReLURes1D(
channels,
groups=groups,
res_expansion=res_expansion,
bias=bias,
activation=activation,
)
)
self.operation = nn.Sequential(*operation)
def forward(self, x): # [b, d, g]
return self.operation(x)
class Model(nn.Module):
def __init__(
self,
points=1024,
input_channels=3,
embed_dim=64,
groups=1,
res_expansion=1.0,
activation="relu",
bias=True,
use_xyz=True,
normalize="center",
dim_expansion=[2, 2, 2, 2],
pre_blocks=[2, 2, 2, 2],
pos_blocks=[2, 2, 2, 2],
k_neighbors=[32, 32, 32, 32],
reducers=[2, 2, 2, 2],
**kwargs,
):
super(Model, self).__init__()
self.stages = len(pre_blocks)
self.points = points
self.embedding = ConvBNReLU1D(input_channels, embed_dim, bias=bias, activation=activation)
assert (
len(pre_blocks)
== len(k_neighbors)
== len(reducers)
== len(pos_blocks)
== len(dim_expansion)
), "Please check stage number consistent for pre_blocks, pos_blocks k_neighbors, reducers."
self.local_grouper_list = nn.ModuleList()
self.pre_blocks_list = nn.ModuleList()
self.pos_blocks_list = nn.ModuleList()
last_channel = embed_dim
anchor_points = self.points
for i in range(len(pre_blocks)):
out_channel = last_channel * dim_expansion[i]
pre_block_num = pre_blocks[i]
pos_block_num = pos_blocks[i]
kneighbor = k_neighbors[i]
reduce = reducers[i]
anchor_points = anchor_points // reduce
# append local_grouper_list
local_grouper = LocalGrouper(
last_channel, anchor_points, kneighbor, use_xyz, normalize
) # [b,g,k,d]
self.local_grouper_list.append(local_grouper)
# append pre_block_list
pre_block_module = PreExtraction(
last_channel,
out_channel,
pre_block_num,
groups=groups,
res_expansion=res_expansion,
bias=bias,
activation=activation,
use_xyz=use_xyz,
)
self.pre_blocks_list.append(pre_block_module)
# append pos_block_list
pos_block_module = PosExtraction(
out_channel,
pos_block_num,
groups=groups,
res_expansion=res_expansion,
bias=bias,
activation=activation,
)
self.pos_blocks_list.append(pos_block_module)
last_channel = out_channel
self.act = get_activation(activation)
return
def forward(self, x):
xyz = x.permute(0, 2, 1)
batch_size, _, _ = x.size()
x = self.embedding(x) # B,D,N
for i in range(self.stages):
# Give xyz[b, p, 3] and fea[b, p, d], return new_xyz[b, g, 3] and new_fea[b, g, k, d]
xyz, x = self.local_grouper_list[i](xyz, x.permute(0, 2, 1)) # [b,g,3] [b,g,k,d]
x = self.pre_blocks_list[i](x) # [b,d,g]
x = self.pos_blocks_list[i](x) # [b,d,g]
x = F.adaptive_max_pool1d(x, 1).squeeze(dim=-1)
return x
class PointMLP(Model):
def __init__(self, points: int, input_channels: int, embed_dim: int, **kwargs):
super().__init__()
assert input_channels == 3 or input_channels == 6, "Input channels must be 3 or 6"
self.backbone = Model(
points=points,
input_channels=input_channels,
embed_dim=embed_dim // 16,
groups=1,
res_expansion=1.0,
activation="relu",
bias=False,
use_xyz=False,
normalize="anchor",
dim_expansion=[2, 2, 2, 2],
pre_blocks=[2, 2, 2, 2],
pos_blocks=[2, 2, 2, 2],
k_neighbors=[24, 24, 24, 24],
reducers=[2, 2, 2, 2],
**kwargs,
)
return
def forward(self, pcd: torch.Tensor, robot_state_obs: torch.Tensor = None) -> torch.Tensor:
B = pcd.shape[0]
# Flatten the batch and time dimensions
pcd = pcd.float().reshape(-1, *pcd.shape[2:])
robot_state_obs = robot_state_obs.float().reshape(-1, *robot_state_obs.shape[2:])
# Permute [B, P, 3] -> [B, 3, P]
pcd = pcd.permute(0, 2, 1)
# Encode all point clouds (across time steps and batch size)
encoded_pcd = self.backbone(pcd)
nx = torch.cat([encoded_pcd, robot_state_obs], dim=1)
# Reshape back to the batch dimension. Now the features of each time step are concatenated
nx = nx.reshape(B, -1)
return nx
class PointMLPElite(nn.Module):
def __init__(self, points: int, input_channels: int, embed_dim: int, **kwargs):
super().__init__()
assert input_channels == 3 or input_channels == 6, "Input channels must be 3 or 6"
self.backbone = Model(
points=points,
input_channels=input_channels,
embed_dim=embed_dim // 16,
groups=1,
res_expansion=0.25,
activation="relu",
bias=False,
use_xyz=False,
normalize="anchor",
dim_expansion=[2, 2, 2, 1],
pre_blocks=[1, 1, 2, 1],
pos_blocks=[1, 1, 2, 1],
k_neighbors=[24, 24, 24, 24],
reducers=[2, 2, 2, 2],
**kwargs,
)
return
def forward(self, pcd: torch.Tensor, robot_state_obs: torch.Tensor = None) -> torch.Tensor:
B = pcd.shape[0]
# Flatten the batch and time dimensions
pcd = pcd.float().reshape(-1, *pcd.shape[2:])
robot_state_obs = robot_state_obs.float().reshape(-1, *robot_state_obs.shape[2:])
# Permute [B, P, 3] -> [B, 3, P]
pcd = pcd.permute(0, 2, 1)
# Encode all point clouds (across time steps and batch size)
encoded_pcd = self.backbone(pcd)
nx = torch.cat([encoded_pcd, robot_state_obs], dim=1)
# Reshape back to the batch dimension. Now the features of each time step are concatenated
nx = nx.reshape(B, -1)
return nx
if __name__ == "__main__":
num_points = 1024
embed_dim = 512
data = torch.rand(2, 3, num_points)
print("===> testing pointMLP ...")
model = PointMLP(num_points, embed_dim)
out = model.backbone(data)
print(out.shape)
|