yamildiego
commited on
Commit
•
4566fec
1
Parent(s):
36063b7
file 1
Browse files- .gitignore +0 -1
- test.py +1 -1
.gitignore
CHANGED
@@ -10,7 +10,6 @@
|
|
10 |
/sdxl_models/ip-adapter-plus-face_sdxl_vit-h.bin
|
11 |
/sdxl_models/ip-adapter-plus-face_sdxl_vit-h.safetensors
|
12 |
|
13 |
-
|
14 |
**/__pycache__
|
15 |
|
16 |
**/.DS_Store
|
|
|
10 |
/sdxl_models/ip-adapter-plus-face_sdxl_vit-h.bin
|
11 |
/sdxl_models/ip-adapter-plus-face_sdxl_vit-h.safetensors
|
12 |
|
|
|
13 |
**/__pycache__
|
14 |
|
15 |
**/.DS_Store
|
test.py
CHANGED
@@ -2,7 +2,7 @@ from handler import EndpointHandler
|
|
2 |
from PIL import Image
|
3 |
|
4 |
# Crear una instancia del handler
|
5 |
-
handler = EndpointHandler(model_dir="
|
6 |
|
7 |
# Llamar al handler con datos de prueba
|
8 |
data = {
|
|
|
2 |
from PIL import Image
|
3 |
|
4 |
# Crear una instancia del handler
|
5 |
+
handler = EndpointHandler(model_dir=".")
|
6 |
|
7 |
# Llamar al handler con datos de prueba
|
8 |
data = {
|