Unverified Commit 1a3a1ade authored by ChaimZhu's avatar ChaimZhu Committed by GitHub
Browse files

[Enhance] add README and copyright pre-commmit (#1134)

* add precommmit to check readme

* update

* fix typos
parent c10e9be2
# Copyright (c) OpenMMLab. All rights reserved.
import numpy as np import numpy as np
import torch import torch
from mmcv.cnn import ConvModule, normal_init from mmcv.cnn import ConvModule, normal_init
......
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from torch.nn import functional as F from torch.nn import functional as F
......
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from torch import nn as nn from torch import nn as nn
......
# Copyright (c) OpenMMLab. All rights reserved.
from .ball_query import ball_query from .ball_query import ball_query
__all__ = ['ball_query'] __all__ = ['ball_query']
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from torch.autograd import Function from torch.autograd import Function
......
# Copyright (c) OpenMMLab. All rights reserved.
from .furthest_point_sample import (furthest_point_sample, from .furthest_point_sample import (furthest_point_sample,
furthest_point_sample_with_dist) furthest_point_sample_with_dist)
from .points_sampler import Points_Sampler from .points_sampler import Points_Sampler
......
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from torch.autograd import Function from torch.autograd import Function
......
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from mmcv.runner import force_fp32 from mmcv.runner import force_fp32
from torch import nn as nn from torch import nn as nn
......
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
......
# Copyright (c) OpenMMLab. All rights reserved.
from .gather_points import gather_points from .gather_points import gather_points
__all__ = ['gather_points'] __all__ = ['gather_points']
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from torch.autograd import Function from torch.autograd import Function
......
# Copyright (c) OpenMMLab. All rights reserved.
from .group_points import GroupAll, QueryAndGroup, grouping_operation from .group_points import GroupAll, QueryAndGroup, grouping_operation
__all__ = ['QueryAndGroup', 'GroupAll', 'grouping_operation'] __all__ = ['QueryAndGroup', 'GroupAll', 'grouping_operation']
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from torch import nn as nn from torch import nn as nn
from torch.autograd import Function from torch.autograd import Function
......
# Copyright (c) OpenMMLab. All rights reserved.
from .three_interpolate import three_interpolate from .three_interpolate import three_interpolate
from .three_nn import three_nn from .three_nn import three_nn
......
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from torch.autograd import Function from torch.autograd import Function
from typing import Tuple from typing import Tuple
......
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from torch.autograd import Function from torch.autograd import Function
from typing import Tuple from typing import Tuple
......
# Copyright (c) OpenMMLab. All rights reserved.
from .iou3d_utils import boxes_iou_bev, nms_gpu, nms_normal_gpu from .iou3d_utils import boxes_iou_bev, nms_gpu, nms_normal_gpu
__all__ = ['boxes_iou_bev', 'nms_gpu', 'nms_normal_gpu'] __all__ = ['boxes_iou_bev', 'nms_gpu', 'nms_normal_gpu']
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from . import iou3d_cuda from . import iou3d_cuda
......
# Copyright (c) OpenMMLab. All rights reserved.
from .knn import knn from .knn import knn
__all__ = ['knn'] __all__ = ['knn']
# Copyright (c) OpenMMLab. All rights reserved.
import torch import torch
from torch.autograd import Function from torch.autograd import Function
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment