danupurnomo
commited on
Commit
·
7bce74c
1
Parent(s):
b495898
add images
Browse files- .gitattributes +1 -0
- .gitignore +1 -0
- app.py +2 -1
- img/01 - background.jpg +0 -0
- img/test-01.jpg +3 -0
- img/test-02.jpg +3 -0
- img/test-03.jpg +3 -0
.gitattributes
CHANGED
@@ -31,3 +31,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
31 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
32 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
33 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
31 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
32 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
33 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
34 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
.DS_Store
|
app.py
CHANGED
@@ -56,7 +56,8 @@ def convert_img_to_base64(img_path):
|
|
56 |
encoded_string = base64.b64encode(image_file.read())
|
57 |
return encoded_string
|
58 |
|
59 |
-
img_background_path = os.path.join(img_path, '01 - background.jpg')
|
|
|
60 |
encoded_string = convert_img_to_base64(img_background_path)
|
61 |
st.markdown(
|
62 |
f"""
|
|
|
56 |
encoded_string = base64.b64encode(image_file.read())
|
57 |
return encoded_string
|
58 |
|
59 |
+
# img_background_path = os.path.join(img_path, '01 - background.jpg')
|
60 |
+
img_background_path = os.path.join(img_path, 'test-03.jpg')
|
61 |
encoded_string = convert_img_to_base64(img_background_path)
|
62 |
st.markdown(
|
63 |
f"""
|
img/01 - background.jpg
CHANGED
![]() |
![]() |
Git LFS Details
|
img/test-01.jpg
ADDED
![]() |
Git LFS Details
|
img/test-02.jpg
ADDED
![]() |
Git LFS Details
|
img/test-03.jpg
ADDED
![]() |
Git LFS Details
|