vobecant
commited on
Commit
·
10b0c9c
1
Parent(s):
350d469
Initial commit.
Browse files- .idea/workspace.xml +18 -3
- app.py +2 -2
.idea/workspace.xml
CHANGED
@@ -2,7 +2,8 @@
|
|
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
|
|
|
6 |
</list>
|
7 |
<option name="SHOW_DIALOG" value="false" />
|
8 |
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
@@ -51,7 +52,7 @@
|
|
51 |
<option name="number" value="Default" />
|
52 |
<option name="presentableId" value="Default" />
|
53 |
<updated>1647350746642</updated>
|
54 |
-
<workItem from="1647350750956" duration="
|
55 |
</task>
|
56 |
<task id="LOCAL-00001" summary="Initial commit.">
|
57 |
<created>1647352693910</created>
|
@@ -354,7 +355,21 @@
|
|
354 |
<option name="project" value="LOCAL" />
|
355 |
<updated>1647362155517</updated>
|
356 |
</task>
|
357 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
<servers />
|
359 |
</component>
|
360 |
<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$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
6 |
+
<change beforePath="$PROJECT_DIR$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
|
7 |
</list>
|
8 |
<option name="SHOW_DIALOG" value="false" />
|
9 |
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
|
52 |
<option name="number" value="Default" />
|
53 |
<option name="presentableId" value="Default" />
|
54 |
<updated>1647350746642</updated>
|
55 |
+
<workItem from="1647350750956" duration="11844000" />
|
56 |
</task>
|
57 |
<task id="LOCAL-00001" summary="Initial commit.">
|
58 |
<created>1647352693910</created>
|
|
|
355 |
<option name="project" value="LOCAL" />
|
356 |
<updated>1647362155517</updated>
|
357 |
</task>
|
358 |
+
<task id="LOCAL-00044" summary="Initial commit.">
|
359 |
+
<created>1647362286456</created>
|
360 |
+
<option name="number" value="00044" />
|
361 |
+
<option name="presentableId" value="LOCAL-00044" />
|
362 |
+
<option name="project" value="LOCAL" />
|
363 |
+
<updated>1647362286456</updated>
|
364 |
+
</task>
|
365 |
+
<task id="LOCAL-00045" summary="Initial commit.">
|
366 |
+
<created>1647362439904</created>
|
367 |
+
<option name="number" value="00045" />
|
368 |
+
<option name="presentableId" value="LOCAL-00045" />
|
369 |
+
<option name="project" value="LOCAL" />
|
370 |
+
<updated>1647362439904</updated>
|
371 |
+
</task>
|
372 |
+
<option name="localTasksCounter" value="46" />
|
373 |
<servers />
|
374 |
</component>
|
375 |
<component name="TypeScriptGeneratedFilesManager">
|
app.py
CHANGED
@@ -158,8 +158,8 @@ def predict(input_img):
|
|
158 |
|
159 |
title = "Drive&Segment"
|
160 |
description = 'Gradio Demo accompanying paper "Drive&Segment: Unsupervised Semantic Segmentation of Urban Scenes via Cross-modal Distillation"\nBecause of the CPU-only inference, it might take up to 20s for large images.'
|
161 |
-
article = "<p style='text-align: center'><a href='TODO' target='_blank'>Project Page</a> | <a href='codelink' target='_blank'>Github</a></p>"
|
162 |
-
examples = ['examples/img1.jpg']
|
163 |
|
164 |
# predict(examples[0])
|
165 |
|
|
|
158 |
|
159 |
title = "Drive&Segment"
|
160 |
description = 'Gradio Demo accompanying paper "Drive&Segment: Unsupervised Semantic Segmentation of Urban Scenes via Cross-modal Distillation"\nBecause of the CPU-only inference, it might take up to 20s for large images.'
|
161 |
+
# article = "<p style='text-align: center'><a href='TODO' target='_blank'>Project Page</a> | <a href='codelink' target='_blank'>Github</a></p>"
|
162 |
+
examples = ['examples/img1.jpg'] # , 'examples/img2.jpeg']
|
163 |
|
164 |
# predict(examples[0])
|
165 |
|