Spaces:
Runtime error
Runtime error
File size: 1,010 Bytes
e5a474c 878e93e e5a474c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import os
examples = [
[
os.path.join(
os.path.dirname(__file__),
"examples/embeddings/dogs.pickle"
),
os.path.join(
os.path.dirname(__file__),
"examples/image_zipfile/dogs.zip"
),
os.path.join(os.path.dirname(__file__), "examples/images/dogs-1.jpg"),
],
[
os.path.join(
os.path.dirname(__file__),
"examples/embeddings/dogs.pickle"
),
os.path.join(
os.path.dirname(__file__),
"examples/image_zipfile/dogs.zip"
),
os.path.join(os.path.dirname(__file__), "examples/images/dogs-2.jpg"),
],
[
os.path.join(
os.path.dirname(__file__),
"examples/embeddings/dogs.pickle"
),
os.path.join(
os.path.dirname(__file__),
"examples/image_zipfile/dogs.zip"
),
os.path.join(os.path.dirname(__file__), "examples/images/dogs-3.jpg"),
],
]
|