-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
46 lines (42 loc) · 871 Bytes
/
constants.py
File metadata and controls
46 lines (42 loc) · 871 Bytes
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
39
40
41
42
43
44
45
46
from pathlib import Path
import numpy as np
ROOT_DIR = Path(__file__).resolve().parent
FOLDS = 10
np.random.seed(420)
CLASS_TO_NUMBER = {
0: "balance",
1: "boat",
2: "bow",
3: "bridge",
4: "butterfly",
5: "camel",
6: "cat",
7: "chair",
8: "cobra",
9: "cow",
10: "crow",
11: "downdog",
12: "embryo_in_womb",
13: "extended_hand-to-big-toe",
14: "extended_side_angle",
15: "garland",
16: "godess",
17: "half_moon",
18: "handstand",
19: "happy_baby",
20: "high_lunge",
21: "legs-up-the-wall",
22: "lord of the dance",
23: "lotus",
24: "one-legged_king_pigeon",
25: "pigeon",
26: "plank",
27: "pyramid",
28: "scorpion",
29: "seated_forward_bend",
30: "splits",
31: "staff",
32: "standing_forward_bend",
33: "tree",
34: "warrior",
}