vobecant commited on
Commit
27f46d8
1 Parent(s): 811027c

Initial commit.

Browse files
Files changed (2) hide show
  1. .idea/workspace.xml +11 -10
  2. app.py +1 -1
.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$/weights/segmenter_nusc.pth_variant.yml" beforeDir="false" afterPath="$PROJECT_DIR$/weights/segmenter_nusc.pth_variant.yml" afterDir="false" />
 
6
  </list>
7
  <option name="SHOW_DIALOG" value="false" />
8
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -51,14 +52,7 @@
51
  <option name="number" value="Default" />
52
  <option name="presentableId" value="Default" />
53
  <updated>1647350746642</updated>
54
- <workItem from="1647350750956" duration="12729000" />
55
- </task>
56
- <task id="LOCAL-00001" summary="Initial commit.">
57
- <created>1647352693910</created>
58
- <option name="number" value="00001" />
59
- <option name="presentableId" value="LOCAL-00001" />
60
- <option name="project" value="LOCAL" />
61
- <updated>1647352693910</updated>
62
  </task>
63
  <task id="LOCAL-00002" summary="Initial commit.">
64
  <created>1647353059401</created>
@@ -396,7 +390,14 @@
396
  <option name="project" value="LOCAL" />
397
  <updated>1647364291658</updated>
398
  </task>
399
- <option name="localTasksCounter" value="50" />
 
 
 
 
 
 
 
400
  <servers />
401
  </component>
402
  <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="13511000" />
 
 
 
 
 
 
 
56
  </task>
57
  <task id="LOCAL-00002" summary="Initial commit.">
58
  <created>1647353059401</created>
 
390
  <option name="project" value="LOCAL" />
391
  <updated>1647364291658</updated>
392
  </task>
393
+ <task id="LOCAL-00050" summary="Initial commit.">
394
+ <created>1647364366969</created>
395
+ <option name="number" value="00050" />
396
+ <option name="presentableId" value="LOCAL-00050" />
397
+ <option name="project" value="LOCAL" />
398
+ <updated>1647364366970</updated>
399
+ </task>
400
+ <option name="localTasksCounter" value="51" />
401
  <servers />
402
  </component>
403
  <component name="TypeScriptGeneratedFilesManager">
app.py CHANGED
@@ -168,7 +168,7 @@ def predict(input_img):
168
  title = "Drive&Segment"
169
  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.'
170
  # article = "<p style='text-align: center'><a href='TODO' target='_blank'>Project Page</a> | <a href='codelink' target='_blank'>Github</a></p>"
171
- examples = ['examples/100.jpeg', 'examples/img1.jpg'] # , 'examples/img2.jpeg']
172
 
173
  # predict(examples[0])
174
 
 
168
  title = "Drive&Segment"
169
  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.'
170
  # article = "<p style='text-align: center'><a href='TODO' target='_blank'>Project Page</a> | <a href='codelink' target='_blank'>Github</a></p>"
171
+ examples = ['examples/100.jpeg', 'examples/img1.jpg', 'examples/39076.jpg'] # , 'examples/img2.jpeg']
172
 
173
  # predict(examples[0])
174