Spaces:
Runtime error
Runtime error
File size: 519 Bytes
1f64946 36c11e4 1f64946 34891b9 1f64946 34891b9 1f64946 34891b9 1f64946 e6a8e1b 34891b9 1f64946 34891b9 1f64946 34891b9 1f64946 34891b9 1f64946 |
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 |
"""Constants use in the space.
"""
import os
import pathlib
DATASET_NAME = "mulsi/fruit-vegetable-concepts"
CONCEPTS = [
# Environment
"stem",
"leaf",
"tail",
"seed",
"pulp",
"soil",
"tree",
# Shapes
"ovaloid",
"sphere",
"cylinder",
"cube",
# Colors
"black",
"purple",
"red",
"blue",
"green",
"brown",
"orange",
"yellow",
"white",
]
ASSETS_FOLDER = pathlib.Path(__file__).parent / "assets"
HF_TOKEN = os.getenv("HF_TOKEN")
|