Spaces:
Sleeping
Sleeping
Cédric KACZMAREK commited on
Commit ·
fe57be4
1
Parent(s): 0a066e6
encore des tests d'image
Browse files
app.py
CHANGED
|
@@ -58,6 +58,11 @@ BASE_PATH = FILE.parents[0]
|
|
| 58 |
|
| 59 |
image = os.path.join(BASE_PATH,"img","logo_rizoa_auchan.jpg")
|
| 60 |
print(f"Chemin de l'image : {image}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
PLACEHOLDER = (image)
|
| 62 |
|
| 63 |
with gr.Blocks() as demo:
|
|
|
|
| 58 |
|
| 59 |
image = os.path.join(BASE_PATH,"img","logo_rizoa_auchan.jpg")
|
| 60 |
print(f"Chemin de l'image : {image}")
|
| 61 |
+
image = os.path.join("img","logo_rizoa_auchan.jpg")
|
| 62 |
+
print(f"chemin 2 : {image}")
|
| 63 |
+
image = os.path.abspath(os.path.join("img", "logo_rizoa_auchan.jpg"))
|
| 64 |
+
print(f"Image 3 : {image}")
|
| 65 |
+
|
| 66 |
PLACEHOLDER = (image)
|
| 67 |
|
| 68 |
with gr.Blocks() as demo:
|