vobecant
commited on
Commit
•
d4c3a41
1
Parent(s):
b60b305
Initial commit.
Browse files- .idea/workspace.xml +16 -3
- 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" />
|
@@ -51,7 +50,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>
|
@@ -207,7 +206,21 @@
|
|
207 |
<option name="project" value="LOCAL" />
|
208 |
<updated>1647358512837</updated>
|
209 |
</task>
|
210 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
<servers />
|
212 |
</component>
|
213 |
<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="8037000" />
|
54 |
</task>
|
55 |
<task id="LOCAL-00001" summary="Initial commit.">
|
56 |
<created>1647352693910</created>
|
|
|
206 |
<option name="project" value="LOCAL" />
|
207 |
<updated>1647358512837</updated>
|
208 |
</task>
|
209 |
+
<task id="LOCAL-00023" summary="Initial commit.">
|
210 |
+
<created>1647358700178</created>
|
211 |
+
<option name="number" value="00023" />
|
212 |
+
<option name="presentableId" value="LOCAL-00023" />
|
213 |
+
<option name="project" value="LOCAL" />
|
214 |
+
<updated>1647358700178</updated>
|
215 |
+
</task>
|
216 |
+
<task id="LOCAL-00024" summary="Initial commit.">
|
217 |
+
<created>1647358886682</created>
|
218 |
+
<option name="number" value="00024" />
|
219 |
+
<option name="presentableId" value="LOCAL-00024" />
|
220 |
+
<option name="project" value="LOCAL" />
|
221 |
+
<updated>1647358886682</updated>
|
222 |
+
</task>
|
223 |
+
<option name="localTasksCounter" value="25" />
|
224 |
<servers />
|
225 |
</component>
|
226 |
<component name="TypeScriptGeneratedFilesManager">
|
app.py
CHANGED
@@ -155,4 +155,4 @@ examples = [['examples/img1.jpg']]
|
|
155 |
iface = gr.Interface(predict, gr.inputs.Image(type='filepath'), "image", title=title, description=description,
|
156 |
examples=examples)
|
157 |
|
158 |
-
iface.launch()
|
|
|
155 |
iface = gr.Interface(predict, gr.inputs.Image(type='filepath'), "image", title=title, description=description,
|
156 |
examples=examples)
|
157 |
|
158 |
+
iface.launch(debug=True)
|