vobecant
commited on
Commit
·
8e4f75b
1
Parent(s):
07f6d2a
Initial commit.
Browse files- .idea/workspace.xml +10 -12
- app.py +1 -1
.idea/workspace.xml
CHANGED
|
@@ -1,9 +1,7 @@
|
|
| 1 |
<?xml version="1.0" encoding="UTF-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$/app.py" beforeDir="false" afterPath="$PROJECT_DIR$/app.py" afterDir="false" />
|
| 6 |
-
</list>
|
| 7 |
<option name="SHOW_DIALOG" value="false" />
|
| 8 |
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
| 9 |
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
@@ -75,14 +73,7 @@
|
|
| 75 |
<option name="number" value="Default" />
|
| 76 |
<option name="presentableId" value="Default" />
|
| 77 |
<updated>1647350746642</updated>
|
| 78 |
-
<workItem from="1647350750956" duration="
|
| 79 |
-
</task>
|
| 80 |
-
<task id="LOCAL-00010" summary="Initial commit.">
|
| 81 |
-
<created>1647355817619</created>
|
| 82 |
-
<option name="number" value="00010" />
|
| 83 |
-
<option name="presentableId" value="LOCAL-00010" />
|
| 84 |
-
<option name="project" value="LOCAL" />
|
| 85 |
-
<updated>1647355817619</updated>
|
| 86 |
</task>
|
| 87 |
<task id="LOCAL-00011" summary="Initial commit.">
|
| 88 |
<created>1647356180253</created>
|
|
@@ -420,7 +411,14 @@
|
|
| 420 |
<option name="project" value="LOCAL" />
|
| 421 |
<updated>1647369445378</updated>
|
| 422 |
</task>
|
| 423 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 424 |
<servers />
|
| 425 |
</component>
|
| 426 |
<component name="TypeScriptGeneratedFilesManager">
|
|
|
|
| 1 |
<?xml version="1.0" encoding="UTF-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 |
<option name="SHOW_DIALOG" value="false" />
|
| 6 |
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
| 7 |
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
|
|
| 73 |
<option name="number" value="Default" />
|
| 74 |
<option name="presentableId" value="Default" />
|
| 75 |
<updated>1647350746642</updated>
|
| 76 |
+
<workItem from="1647350750956" duration="16457000" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
</task>
|
| 78 |
<task id="LOCAL-00011" summary="Initial commit.">
|
| 79 |
<created>1647356180253</created>
|
|
|
|
| 411 |
<option name="project" value="LOCAL" />
|
| 412 |
<updated>1647369445378</updated>
|
| 413 |
</task>
|
| 414 |
+
<task id="LOCAL-00059" summary="Initial commit.">
|
| 415 |
+
<created>1647369586008</created>
|
| 416 |
+
<option name="number" value="00059" />
|
| 417 |
+
<option name="presentableId" value="LOCAL-00059" />
|
| 418 |
+
<option name="project" value="LOCAL" />
|
| 419 |
+
<updated>1647369586008</updated>
|
| 420 |
+
</task>
|
| 421 |
+
<option name="localTasksCounter" value="60" />
|
| 422 |
<servers />
|
| 423 |
</component>
|
| 424 |
<component name="TypeScriptGeneratedFilesManager">
|
app.py
CHANGED
|
@@ -183,4 +183,4 @@ iface = gr.Interface(predict, [gr.inputs.Image(type='filepath'), gr.inputs.Check
|
|
| 183 |
"image", title=title, description=description,
|
| 184 |
examples=[examples, []])
|
| 185 |
|
| 186 |
-
iface.launch(show_error=True)
|
|
|
|
| 183 |
"image", title=title, description=description,
|
| 184 |
examples=[examples, []])
|
| 185 |
|
| 186 |
+
iface.launch(show_error=True, share=True)
|