vobecant
commited on
Commit
·
bb0d0b7
1
Parent(s):
4755444
Initial commit.
Browse files- .idea/workspace.xml +9 -6
- app.py +2 -1
.idea/workspace.xml
CHANGED
|
@@ -2,10 +2,6 @@
|
|
| 2 |
<project version="4">
|
| 3 |
<component name="ChangeListManager">
|
| 4 |
<list default="true" id="5dd22f22-8223-4d55-99f9-57d1e00622d7" name="Default Changelist" comment="Initial commit.">
|
| 5 |
-
<change afterPath="$PROJECT_DIR$/examples/img2.jpeg" afterDir="false" />
|
| 6 |
-
<change afterPath="$PROJECT_DIR$/examples/img3.jpg" afterDir="false" />
|
| 7 |
-
<change afterPath="$PROJECT_DIR$/examples/img4.jpg" afterDir="false" />
|
| 8 |
-
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
| 9 |
<change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
|
| 10 |
</list>
|
| 11 |
<option name="SHOW_DIALOG" value="false" />
|
|
@@ -54,7 +50,7 @@
|
|
| 54 |
<option name="number" value="Default" />
|
| 55 |
<option name="presentableId" value="Default" />
|
| 56 |
<updated>1647350746642</updated>
|
| 57 |
-
<workItem from="1647350750956" duration="
|
| 58 |
</task>
|
| 59 |
<task id="LOCAL-00001" summary="Initial commit.">
|
| 60 |
<created>1647352693910</created>
|
|
@@ -322,7 +318,14 @@
|
|
| 322 |
<option name="project" value="LOCAL" />
|
| 323 |
<updated>1647360852179</updated>
|
| 324 |
</task>
|
| 325 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 326 |
<servers />
|
| 327 |
</component>
|
| 328 |
<component name="TypeScriptGeneratedFilesManager">
|
|
|
|
| 2 |
<project version="4">
|
| 3 |
<component name="ChangeListManager">
|
| 4 |
<list default="true" id="5dd22f22-8223-4d55-99f9-57d1e00622d7" name="Default Changelist" comment="Initial commit.">
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
<change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
|
| 6 |
</list>
|
| 7 |
<option name="SHOW_DIALOG" value="false" />
|
|
|
|
| 50 |
<option name="number" value="Default" />
|
| 51 |
<option name="presentableId" value="Default" />
|
| 52 |
<updated>1647350746642</updated>
|
| 53 |
+
<workItem from="1647350750956" duration="10459000" />
|
| 54 |
</task>
|
| 55 |
<task id="LOCAL-00001" summary="Initial commit.">
|
| 56 |
<created>1647352693910</created>
|
|
|
|
| 318 |
<option name="project" value="LOCAL" />
|
| 319 |
<updated>1647360852179</updated>
|
| 320 |
</task>
|
| 321 |
+
<task id="LOCAL-00039" summary="Initial commit.">
|
| 322 |
+
<created>1647361256773</created>
|
| 323 |
+
<option name="number" value="00039" />
|
| 324 |
+
<option name="presentableId" value="LOCAL-00039" />
|
| 325 |
+
<option name="project" value="LOCAL" />
|
| 326 |
+
<updated>1647361256773</updated>
|
| 327 |
+
</task>
|
| 328 |
+
<option name="localTasksCounter" value="40" />
|
| 329 |
<servers />
|
| 330 |
</component>
|
| 331 |
<component name="TypeScriptGeneratedFilesManager">
|
app.py
CHANGED
|
@@ -13,7 +13,8 @@ from segmenter_model.factory import create_segmenter
|
|
| 13 |
from segmenter_model.fpn_picie import PanopticFPN
|
| 14 |
from segmenter_model.utils import colorize_one, map2cs
|
| 15 |
|
| 16 |
-
WEIGHTS = './weights/segmenter.pth
|
|
|
|
| 17 |
|
| 18 |
|
| 19 |
def download_file_from_google_drive(destination=WEIGHTS):
|
|
|
|
| 13 |
from segmenter_model.fpn_picie import PanopticFPN
|
| 14 |
from segmenter_model.utils import colorize_one, map2cs
|
| 15 |
|
| 16 |
+
# WEIGHTS = './weights/segmenter.pth
|
| 17 |
+
WEIGHTS = './weights/segmenter_nusc.pth'
|
| 18 |
|
| 19 |
|
| 20 |
def download_file_from_google_drive(destination=WEIGHTS):
|