Xmaster6y commited on
Commit
34891b9
·
unverified ·
1 Parent(s): 36c11e4

new labels

Browse files
Files changed (1) hide show
  1. src/constants.py +15 -1
src/constants.py CHANGED
@@ -7,15 +7,29 @@ import pathlib
7
 
8
  DATASET_NAME = "mulsi/fruit-vegetable-concepts"
9
  CONCEPTS = [
 
 
 
 
 
 
 
 
10
  # Shapes
 
11
  "sphere",
12
- "cube",
13
  "cylinder",
 
14
  # Colors
 
 
15
  "red",
 
16
  "green",
 
17
  "orange",
18
  "yellow",
 
19
  ]
20
  ASSETS_FOLDER = pathlib.Path(__file__).parent / "assets"
21
 
 
7
 
8
  DATASET_NAME = "mulsi/fruit-vegetable-concepts"
9
  CONCEPTS = [
10
+ # Environment
11
+ "stem",
12
+ "leaf",
13
+ "tail",
14
+ "seed",
15
+ "pulp",
16
+ "soil",
17
+ "tree",
18
  # Shapes
19
+ "ovaloid",
20
  "sphere",
 
21
  "cylinder",
22
+ "cube",
23
  # Colors
24
+ "black"
25
+ "purple",
26
  "red",
27
+ "blue",
28
  "green",
29
+ "brown",
30
  "orange",
31
  "yellow",
32
+ "white",
33
  ]
34
  ASSETS_FOLDER = pathlib.Path(__file__).parent / "assets"
35