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
vision
Commits
c8f7d772
Unverified
Commit
c8f7d772
authored
Apr 27, 2021
by
Vasilis Vryniotis
Committed by
GitHub
Apr 27, 2021
Browse files
Remove inconsistent FB copyright headers (#3741)
parent
7af30ee9
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1 addition
and
8 deletions
+1
-8
test/cpp/test_custom_operators.cpp
test/cpp/test_custom_operators.cpp
+0
-2
torchvision/csrc/io/decoder/stream.cpp
torchvision/csrc/io/decoder/stream.cpp
+1
-1
torchvision/models/detection/anchor_utils.py
torchvision/models/detection/anchor_utils.py
+0
-1
torchvision/models/detection/generalized_rcnn.py
torchvision/models/detection/generalized_rcnn.py
+0
-1
torchvision/models/detection/image_list.py
torchvision/models/detection/image_list.py
+0
-1
torchvision/models/detection/rpn.py
torchvision/models/detection/rpn.py
+0
-1
torchvision/ops/poolers.py
torchvision/ops/poolers.py
+0
-1
No files found.
test/cpp/test_custom_operators.cpp
View file @
c8f7d772
// Copyright 2004-present Facebook. All Rights Reserved.
#include <gtest/gtest.h>
#include <torch/script.h>
#include <torch/torch.h>
...
...
torchvision/csrc/io/decoder/stream.cpp
View file @
c8f7d772
...
...
@@ -17,7 +17,7 @@ Stream::Stream(
Stream
::~
Stream
()
{
if
(
frame_
)
{
av_free
(
frame_
);
// Copyright 2004-present Facebook. All Rights Reserved.
av_free
(
frame_
);
}
if
(
codecCtx_
)
{
avcodec_free_context
(
&
codecCtx_
);
...
...
torchvision/models/detection/anchor_utils.py
View file @
c8f7d772
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
import
torch
from
torch
import
nn
,
Tensor
...
...
torchvision/models/detection/generalized_rcnn.py
View file @
c8f7d772
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
"""
Implements the Generalized R-CNN framework
"""
...
...
torchvision/models/detection/image_list.py
View file @
c8f7d772
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
import
torch
from
torch
import
Tensor
from
typing
import
List
,
Tuple
...
...
torchvision/models/detection/rpn.py
View file @
c8f7d772
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
import
torch
from
torch.nn
import
functional
as
F
from
torch
import
nn
,
Tensor
...
...
torchvision/ops/poolers.py
View file @
c8f7d772
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
import
torch
from
torch
import
nn
,
Tensor
...
...
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