thr3a commited on
Commit
87be8cc
1 Parent(s): 5c6bf94
Files changed (4) hide show
  1. README.md +5 -5
  2. app.py +6 -0
  3. requirements.txt +1 -0
  4. style.css +29 -0
README.md CHANGED
@@ -1,10 +1,10 @@
1
  ---
2
- title: Super Iopaint
3
- emoji: 🐢
4
- colorFrom: blue
5
- colorTo: yellow
6
  sdk: gradio
7
- sdk_version: 4.29.0
8
  app_file: app.py
9
  pinned: false
10
  license: mit
 
1
  ---
2
+ title: IOPaint-LaMA
3
+ emoji:
4
+ colorFrom: indigo
5
+ colorTo: purple
6
  sdk: gradio
7
+ sdk_version: 3.9.1
8
  app_file: app.py
9
  pinned: false
10
  license: mit
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import subprocess
2
+
3
+ if __name__ == "__main__":
4
+ cmd = "iopaint start --model lama --host 0.0.0.0 --port 7860"
5
+ # start subprocess using cmd
6
+ subprocess.run(cmd, shell=True)
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ IOPaint==1.2.3
style.css ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ padding: 2rem;
3
+ font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
+ }
5
+
6
+ h1 {
7
+ font-size: 16px;
8
+ margin-top: 0;
9
+ }
10
+
11
+ p {
12
+ color: rgb(107, 114, 128);
13
+ font-size: 15px;
14
+ margin-bottom: 10px;
15
+ margin-top: 5px;
16
+ }
17
+
18
+ .card {
19
+ max-width: 620px;
20
+ margin: 0 auto;
21
+ padding: 16px;
22
+ border: 1px solid lightgray;
23
+ border-radius: 16px;
24
+ }
25
+
26
+ .card p:last-child {
27
+ margin-bottom: 0;
28
+ }
29
+