vobecant
commited on
Commit
·
0b6688c
1
Parent(s):
bad7981
Initial commit.
Browse files- .idea/workspace.xml +9 -10
- app.py +1 -1
.idea/workspace.xml
CHANGED
@@ -2,7 +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 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" />
|
@@ -76,14 +75,7 @@
|
|
76 |
<option name="number" value="Default" />
|
77 |
<option name="presentableId" value="Default" />
|
78 |
<updated>1647350746642</updated>
|
79 |
-
<workItem from="1647350750956" duration="
|
80 |
-
</task>
|
81 |
-
<task id="LOCAL-00008" summary="Initial commit.">
|
82 |
-
<created>1647355606191</created>
|
83 |
-
<option name="number" value="00008" />
|
84 |
-
<option name="presentableId" value="LOCAL-00008" />
|
85 |
-
<option name="project" value="LOCAL" />
|
86 |
-
<updated>1647355606191</updated>
|
87 |
</task>
|
88 |
<task id="LOCAL-00009" summary="Initial commit.">
|
89 |
<created>1647355689933</created>
|
@@ -421,7 +413,14 @@
|
|
421 |
<option name="project" value="LOCAL" />
|
422 |
<updated>1647368703888</updated>
|
423 |
</task>
|
424 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
<servers />
|
426 |
</component>
|
427 |
<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" />
|
|
|
75 |
<option name="number" value="Default" />
|
76 |
<option name="presentableId" value="Default" />
|
77 |
<updated>1647350746642</updated>
|
78 |
+
<workItem from="1647350750956" duration="15888000" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
</task>
|
80 |
<task id="LOCAL-00009" summary="Initial commit.">
|
81 |
<created>1647355689933</created>
|
|
|
413 |
<option name="project" value="LOCAL" />
|
414 |
<updated>1647368703888</updated>
|
415 |
</task>
|
416 |
+
<task id="LOCAL-00057" summary="Initial commit.">
|
417 |
+
<created>1647369198451</created>
|
418 |
+
<option name="number" value="00057" />
|
419 |
+
<option name="presentableId" value="LOCAL-00057" />
|
420 |
+
<option name="project" value="LOCAL" />
|
421 |
+
<updated>1647369198452</updated>
|
422 |
+
</task>
|
423 |
+
<option name="localTasksCounter" value="58" />
|
424 |
<servers />
|
425 |
</component>
|
426 |
<component name="TypeScriptGeneratedFilesManager">
|
app.py
CHANGED
@@ -181,6 +181,6 @@ examples = ['examples/img5.jpeg', 'examples/100.jpeg', 'examples/39076.jpeg', 'e
|
|
181 |
|
182 |
iface = gr.Interface(predict, [gr.inputs.Image(type='filepath'), gr.inputs.Checkbox(label="Cityscapes mapping")],
|
183 |
"image", title=title, description=description,
|
184 |
-
examples=examples)
|
185 |
|
186 |
iface.launch(debug=True, show_error=True)
|
|
|
181 |
|
182 |
iface = gr.Interface(predict, [gr.inputs.Image(type='filepath'), gr.inputs.Checkbox(label="Cityscapes mapping")],
|
183 |
"image", title=title, description=description,
|
184 |
+
examples=[examples, []])
|
185 |
|
186 |
iface.launch(debug=True, show_error=True)
|