You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from detectron2.config import CfgNode |
|
|
|
|
|
def get_cfg() -> CfgNode: |
|
""" |
|
Get a copy of the default config. |
|
|
|
Returns: |
|
a detectron2 CfgNode instance. |
|
""" |
|
from .defaults import _C |
|
|
|
return _C.clone()
|
|
|