Spaces:
Runtime error
Runtime error
SusiePHaltmann
commited on
Commit
·
1e0deb2
1
Parent(s):
e26f4f3
Update app.py
Browse files
app.py
CHANGED
@@ -74,13 +74,13 @@ st.title("Inpainting App")
|
|
74 |
st.markdown("This app allows you to inpaint images using a pre-trained model.")
|
75 |
|
76 |
@st.cache(allow_output_mutation=True)
|
77 |
-
def load_model():
|
78 |
|
79 |
# Load the model here...
|
80 |
|
81 |
return model
|
82 |
|
83 |
-
def inpaint(image,
|
84 |
|
85 |
# Inpaint the image here...
|
86 |
|
|
|
74 |
st.markdown("This app allows you to inpaint images using a pre-trained model.")
|
75 |
|
76 |
@st.cache(allow_output_mutation=True)
|
77 |
+
def load_model(BERT):
|
78 |
|
79 |
# Load the model here...
|
80 |
|
81 |
return model
|
82 |
|
83 |
+
def inpaint(image, BERT):
|
84 |
|
85 |
# Inpaint the image here...
|
86 |
|