Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
MMCV
Commits
6e9ce183
Unverified
Commit
6e9ce183
authored
Feb 24, 2022
by
Zaida Zhou
Committed by
GitHub
Feb 24, 2022
Browse files
Add copyright pre-commit-hook (#1742)
* first commit * Add copyright pre-commit-hook
parent
0a8e67f7
Changes
119
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
0 deletions
+20
-0
tests/test_ops/test_cc_attention.py
tests/test_ops/test_cc_attention.py
+1
-0
tests/test_ops/test_contour_expand.py
tests/test_ops/test_contour_expand.py
+1
-0
tests/test_ops/test_convex_iou.py
tests/test_ops/test_convex_iou.py
+1
-0
tests/test_ops/test_corner_pool.py
tests/test_ops/test_corner_pool.py
+1
-0
tests/test_ops/test_deform_conv.py
tests/test_ops/test_deform_conv.py
+1
-0
tests/test_ops/test_deform_roi_pool.py
tests/test_ops/test_deform_roi_pool.py
+1
-0
tests/test_ops/test_focal_loss.py
tests/test_ops/test_focal_loss.py
+1
-0
tests/test_ops/test_furthest_point_sample.py
tests/test_ops/test_furthest_point_sample.py
+1
-0
tests/test_ops/test_fused_bias_leakyrelu.py
tests/test_ops/test_fused_bias_leakyrelu.py
+1
-0
tests/test_ops/test_gather_points.py
tests/test_ops/test_gather_points.py
+1
-0
tests/test_ops/test_group_points.py
tests/test_ops/test_group_points.py
+1
-0
tests/test_ops/test_info.py
tests/test_ops/test_info.py
+1
-0
tests/test_ops/test_iou3d.py
tests/test_ops/test_iou3d.py
+1
-0
tests/test_ops/test_knn.py
tests/test_ops/test_knn.py
+1
-0
tests/test_ops/test_masked_conv2d.py
tests/test_ops/test_masked_conv2d.py
+1
-0
tests/test_ops/test_merge_cells.py
tests/test_ops/test_merge_cells.py
+1
-0
tests/test_ops/test_min_area_polygons.py
tests/test_ops/test_min_area_polygons.py
+1
-0
tests/test_ops/test_modulated_deform_conv.py
tests/test_ops/test_modulated_deform_conv.py
+1
-0
tests/test_ops/test_ms_deformable_attn.py
tests/test_ops/test_ms_deformable_attn.py
+1
-0
tests/test_ops/test_nms.py
tests/test_ops/test_nms.py
+1
-0
No files found.
tests/test_ops/test_cc_attention.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
torch
import
torch.nn
as
nn
...
...
tests/test_ops/test_contour_expand.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
torch
...
...
tests/test_ops/test_convex_iou.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
pytest
import
torch
...
...
tests/test_ops/test_corner_pool.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
"""
CommandLine:
pytest tests/test_corner_pool.py
...
...
tests/test_ops/test_deform_conv.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
pytest
import
torch
...
...
tests/test_ops/test_deform_roi_pool.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
os
import
numpy
as
np
...
...
tests/test_ops/test_focal_loss.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
torch
...
...
tests/test_ops/test_furthest_point_sample.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
torch
...
...
tests/test_ops/test_fused_bias_leakyrelu.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
torch
...
...
tests/test_ops/test_gather_points.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
torch
...
...
tests/test_ops/test_group_points.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
torch
...
...
tests/test_ops/test_info.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
...
...
tests/test_ops/test_iou3d.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
pytest
import
torch
...
...
tests/test_ops/test_knn.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
torch
...
...
tests/test_ops/test_masked_conv2d.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
...
...
tests/test_ops/test_merge_cells.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
"""
CommandLine:
pytest tests/test_merge_cells.py
...
...
tests/test_ops/test_min_area_polygons.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
pytest
import
torch
...
...
tests/test_ops/test_modulated_deform_conv.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
os
import
numpy
...
...
tests/test_ops/test_ms_deformable_attn.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
torch
...
...
tests/test_ops/test_nms.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
pytest
import
torch
...
...
Prev
1
2
3
4
5
6
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment