kyurimsun commited on
Commit
9aac4f5
·
1 Parent(s): 6286037

UI edit(3)

Browse files
.idea/.gitignore ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Editor-based HTTP Client requests
5
+ /httpRequests/
6
+ # Datasource local storage ignored files
7
+ /dataSources/
8
+ /dataSources.local.xml
.idea/ML_homework3.iml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="PYTHON_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/.venv" />
6
+ </content>
7
+ <orderEntry type="jdk" jdkName="Python 3.9 (ML_homework3)" jdkType="Python SDK" />
8
+ <orderEntry type="sourceFolder" forTests="false" />
9
+ </component>
10
+ <component name="PyDocumentationSettings">
11
+ <option name="format" value="PLAIN" />
12
+ <option name="myDocStringFormat" value="Plain" />
13
+ </component>
14
+ </module>
.idea/inspectionProfiles/profiles_settings.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <component name="InspectionProjectProfileManager">
2
+ <settings>
3
+ <option name="USE_PROJECT_PROFILE" value="false" />
4
+ <version value="1.0" />
5
+ </settings>
6
+ </component>
.idea/misc.xml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="Black">
4
+ <option name="sdkName" value="Python 3.9 (ML_homework3)" />
5
+ </component>
6
+ <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (ML_homework3)" project-jdk-type="Python SDK" />
7
+ </project>
.idea/modules.xml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/ML_homework3.iml" filepath="$PROJECT_DIR$/.idea/ML_homework3.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
app.py CHANGED
@@ -109,11 +109,17 @@ def run_inference(input_img):
109
  fig = draw_plot(pred_img, seg)
110
  return fig
111
 
 
 
 
 
 
112
  demo = gr.Interface(
113
  fn=run_inference,
114
  inputs=gr.Image(type="numpy", label="Input Image"),
115
  outputs=gr.Plot(label="Overlay + Legend"),
116
- theme="mono",
 
117
  examples=[
118
  "image1.jpg",
119
  "image2.jpg",
 
109
  fig = draw_plot(pred_img, seg)
110
  return fig
111
 
112
+ CUSTOM_CSS = """
113
+ :root {
114
+ --body-background-fill: #E0F7FA !important;
115
+ }
116
+ """
117
  demo = gr.Interface(
118
  fn=run_inference,
119
  inputs=gr.Image(type="numpy", label="Input Image"),
120
  outputs=gr.Plot(label="Overlay + Legend"),
121
+ #theme="mono",
122
+ css=CUSTOM_CSS,
123
  examples=[
124
  "image1.jpg",
125
  "image2.jpg",