File size: 337 Bytes
1f64946
 
 
 
 
 
 
8a41a50
1f64946
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""Constants use in the space.
"""

import os
import pathlib


DATASET_NAME = "mulsi/fruit-vegetable-concepts"
CONCEPTS = [
    # Shapes
    "sphere",
    "cube",
    "cylinder",
    # Colors
    "red",
    "green",
    "orange",
    "yellow",
]
ASSETS_FOLDER = pathlib.Path(__file__).parent / "assets"

HF_TOKEN = os.getenv("HF_TOKEN")