Spaces:
Paused
Paused
Upload 2 files
Browse files- .gitattributes +1 -0
- detectron2/_C.cpython-311-x86_64-linux-gnu.so +3 -0
- detectron2/__init__.py +10 -0
.gitattributes
CHANGED
|
@@ -47,3 +47,4 @@ detectron2/build/temp.linux-x86_64-cpython-311/content/drive/MyDrive/detectron2/
|
|
| 47 |
detectron2/detectron2/_C.cpython-311-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text
|
| 48 |
detectron2/detectron2/data/datasets/__pycache__/lvis_v0_5_categories.cpython-311.pyc filter=lfs diff=lfs merge=lfs -text
|
| 49 |
detectron2/detectron2/data/datasets/__pycache__/lvis_v1_categories.cpython-311.pyc filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 47 |
detectron2/detectron2/_C.cpython-311-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text
|
| 48 |
detectron2/detectron2/data/datasets/__pycache__/lvis_v0_5_categories.cpython-311.pyc filter=lfs diff=lfs merge=lfs -text
|
| 49 |
detectron2/detectron2/data/datasets/__pycache__/lvis_v1_categories.cpython-311.pyc filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
detectron2/_C.cpython-311-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text
|
detectron2/_C.cpython-311-x86_64-linux-gnu.so
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75f36bc9c2a36f3f80119852733619c7a49a7d5f8245a7f8072ed25fe81be76d
|
| 3 |
+
size 18246424
|
detectron2/__init__.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright (c) Facebook, Inc. and its affiliates.
|
| 2 |
+
|
| 3 |
+
from .utils.env import setup_environment
|
| 4 |
+
|
| 5 |
+
setup_environment()
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
# This line will be programatically read/write by setup.py.
|
| 9 |
+
# Leave them at the bottom of this file and don't touch them.
|
| 10 |
+
__version__ = "0.6"
|