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
10fa1eea
Unverified
Commit
10fa1eea
authored
Jan 10, 2020
by
Kai Chen
Committed by
GitHub
Jan 10, 2020
Browse files
Add copyright header (#171)
* add copyright header * change # to // for cpp files
parent
da7bb063
Changes
87
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
0 deletions
+20
-0
mmcv/runner/hooks/logger/__init__.py
mmcv/runner/hooks/logger/__init__.py
+1
-0
mmcv/runner/hooks/logger/base.py
mmcv/runner/hooks/logger/base.py
+1
-0
mmcv/runner/hooks/logger/pavi.py
mmcv/runner/hooks/logger/pavi.py
+1
-0
mmcv/runner/hooks/logger/tensorboard.py
mmcv/runner/hooks/logger/tensorboard.py
+1
-0
mmcv/runner/hooks/logger/text.py
mmcv/runner/hooks/logger/text.py
+1
-0
mmcv/runner/hooks/logger/wandb.py
mmcv/runner/hooks/logger/wandb.py
+1
-0
mmcv/runner/hooks/lr_updater.py
mmcv/runner/hooks/lr_updater.py
+1
-0
mmcv/runner/hooks/memory.py
mmcv/runner/hooks/memory.py
+1
-0
mmcv/runner/hooks/optimizer.py
mmcv/runner/hooks/optimizer.py
+1
-0
mmcv/runner/hooks/sampler_seed.py
mmcv/runner/hooks/sampler_seed.py
+1
-0
mmcv/runner/log_buffer.py
mmcv/runner/log_buffer.py
+1
-0
mmcv/runner/parallel_test.py
mmcv/runner/parallel_test.py
+1
-0
mmcv/runner/priority.py
mmcv/runner/priority.py
+1
-0
mmcv/runner/runner.py
mmcv/runner/runner.py
+1
-0
mmcv/runner/utils.py
mmcv/runner/utils.py
+1
-0
mmcv/utils/__init__.py
mmcv/utils/__init__.py
+1
-0
mmcv/utils/config.py
mmcv/utils/config.py
+1
-0
mmcv/utils/misc.py
mmcv/utils/misc.py
+1
-0
mmcv/utils/path.py
mmcv/utils/path.py
+1
-0
mmcv/utils/progressbar.py
mmcv/utils/progressbar.py
+1
-0
No files found.
mmcv/runner/hooks/logger/__init__.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
from
.base
import
LoggerHook
from
.pavi
import
PaviLoggerHook
from
.tensorboard
import
TensorboardLoggerHook
...
...
mmcv/runner/hooks/logger/base.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
from
abc
import
ABCMeta
,
abstractmethod
from
..hook
import
Hook
...
...
mmcv/runner/hooks/logger/pavi.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
from
__future__
import
print_function
import
logging
import
os
...
...
mmcv/runner/hooks/logger/tensorboard.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
os.path
as
osp
import
torch
...
...
mmcv/runner/hooks/logger/text.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
datetime
import
os.path
as
osp
from
collections
import
OrderedDict
...
...
mmcv/runner/hooks/logger/wandb.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
numbers
from
...dist_utils
import
master_only
...
...
mmcv/runner/hooks/lr_updater.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
from
__future__
import
division
from
math
import
cos
,
pi
...
...
mmcv/runner/hooks/memory.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
torch
from
.hook
import
Hook
...
...
mmcv/runner/hooks/optimizer.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
from
torch.nn.utils
import
clip_grad
from
.hook
import
Hook
...
...
mmcv/runner/hooks/sampler_seed.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
from
.hook
import
Hook
...
...
mmcv/runner/log_buffer.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
from
collections
import
OrderedDict
import
numpy
as
np
...
...
mmcv/runner/parallel_test.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
multiprocessing
import
torch
...
...
mmcv/runner/priority.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
from
enum
import
Enum
...
...
mmcv/runner/runner.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
logging
import
os.path
as
osp
import
time
...
...
mmcv/runner/utils.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
sys
import
time
from
getpass
import
getuser
...
...
mmcv/utils/__init__.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
from
.config
import
Config
,
ConfigDict
from
.misc
import
(
check_prerequisites
,
concat_list
,
is_list_of
,
is_seq_of
,
is_str
,
is_tuple_of
,
iter_cast
,
list_cast
,
...
...
mmcv/utils/config.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
os.path
as
osp
import
sys
from
argparse
import
ArgumentParser
...
...
mmcv/utils/misc.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
collections
import
functools
import
itertools
...
...
mmcv/utils/path.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
os
import
os.path
as
osp
import
sys
...
...
mmcv/utils/progressbar.py
View file @
10fa1eea
# Copyright (c) Open-MMLab. All rights reserved.
import
sys
from
multiprocessing
import
Pool
...
...
Prev
1
2
3
4
5
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