forked from espressif/esp-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
62 lines (45 loc) · 1.26 KB
/
Kconfig
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
choice CONV_IMPL
bool "Convolution Implementation"
default XTENSA_IMPL
config C_IMPL
bool "ANSI Implementation for general platforms"
config XTENSA_IMPL
bool "Xtensa Implementation for ESP"
endchoice
menu "ESP-FACE Configuration"
choice DETECTION_MODEL
bool "Detection Model"
default MTMN_LITE_QUANT
config MTMN_LITE_QUANT
bool "MTMN lite in quantization"
config MTMN_LITE_FLOAT
bool "MTMN lite in float"
config MTMN_HEAVY_QUANT
bool "MTMN heavy in quantization"
endchoice
choice RECOGNITION_MODEL
bool "Recognition Model"
default MFN56_1X
config FRMN
bool "FRMN"
config MFN56_1X
bool "MFN56_1X"
config MFN56_2X
bool "MFN56_2X"
config MFN56_3X
bool "MFN56_3X"
config MFN56_4X
bool "MFN56_4X"
endchoice
menu "Object Detection"
choice OBJECT_DETECTION_MODEL
bool "Model"
default LSSH_SPARSE_MN_5
config LSSH_SPARSE_MN_5
bool "LSSH SPARSE MN 5"
endchoice
config LSSH_WITH_LANDMARK
bool "With landmark"
default n
endmenu
endmenu