Spaces:
Runtime error
Runtime error
Commit
·
0f69fc2
1
Parent(s):
847470e
Update app.py
Browse files
app.py
CHANGED
@@ -250,6 +250,11 @@ def run_upload_initial():
|
|
250 |
uploaded_files = st.file_uploader(
|
251 |
"Choose first concept image files", accept_multiple_files=True, type=["png", "jpg", "jpeg"]
|
252 |
)
|
|
|
|
|
|
|
|
|
|
|
253 |
|
254 |
token = st.text_input("Token Name")
|
255 |
st.caption(
|
@@ -289,6 +294,11 @@ def run_upload_secondary():
|
|
289 |
uploaded_files = st.file_uploader(
|
290 |
"Choose second concept image files", accept_multiple_files=True, type=["png", "jpg", "jpeg"]
|
291 |
)
|
|
|
|
|
|
|
|
|
|
|
292 |
token = st.text_input("Token Name")
|
293 |
st.caption(
|
294 |
"""
|
@@ -327,6 +337,11 @@ def run_upload_third():
|
|
327 |
uploaded_files = st.file_uploader(
|
328 |
"Choose third concept image files", accept_multiple_files=True, type=["png", "jpg", "jpeg"]
|
329 |
)
|
|
|
|
|
|
|
|
|
|
|
330 |
token = st.text_input("Token Name")
|
331 |
st.caption(
|
332 |
"""
|
|
|
250 |
uploaded_files = st.file_uploader(
|
251 |
"Choose first concept image files", accept_multiple_files=True, type=["png", "jpg", "jpeg"]
|
252 |
)
|
253 |
+
st.caption(
|
254 |
+
"""
|
255 |
+
Files containing your training images (JPG, PNG, etc. size not restricted). These images contain your 'subject' that you want the trained model to embed in the output domain for later generating customized scenes beyond the training images. For best results, use images without noise or unrelated objects in the background.
|
256 |
+
"""
|
257 |
+
)
|
258 |
|
259 |
token = st.text_input("Token Name")
|
260 |
st.caption(
|
|
|
294 |
uploaded_files = st.file_uploader(
|
295 |
"Choose second concept image files", accept_multiple_files=True, type=["png", "jpg", "jpeg"]
|
296 |
)
|
297 |
+
st.caption(
|
298 |
+
"""
|
299 |
+
Files containing your training images (JPG, PNG, etc. size not restricted). These images contain your 'subject' that you want the trained model to embed in the output domain for later generating customized scenes beyond the training images. For best results, use images without noise or unrelated objects in the background.
|
300 |
+
"""
|
301 |
+
)
|
302 |
token = st.text_input("Token Name")
|
303 |
st.caption(
|
304 |
"""
|
|
|
337 |
uploaded_files = st.file_uploader(
|
338 |
"Choose third concept image files", accept_multiple_files=True, type=["png", "jpg", "jpeg"]
|
339 |
)
|
340 |
+
st.caption(
|
341 |
+
"""
|
342 |
+
Files containing your training images (JPG, PNG, etc. size not restricted). These images contain your 'subject' that you want the trained model to embed in the output domain for later generating customized scenes beyond the training images. For best results, use images without noise or unrelated objects in the background.
|
343 |
+
"""
|
344 |
+
)
|
345 |
token = st.text_input("Token Name")
|
346 |
st.caption(
|
347 |
"""
|