File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed
gabrieltool/statemachine-editor-react/src Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -269,6 +269,12 @@ export class Diagram extends Component {
269
269
) {
270
270
cell . attr ( "circle/fill" , "yellow" ) ;
271
271
}
272
+ if ( state . getProcessorsList ( )
273
+ . map ( callableItem => callableItem . getCallableName ( ) )
274
+ . includes ( "GatingYoloProcessor" )
275
+ ) {
276
+ cell . attr ( "circle/fill" , "yellow" ) ;
277
+ }
272
278
this . addGraphCellWithRef ( state . getName ( ) , cell , state ) ;
273
279
}
274
280
return null ;
Original file line number Diff line number Diff line change 16
16
},
17
17
"YoloProcessor" : {
18
18
"model_path" : " " ,
19
- "conf_threshold" : " 0.8"
19
+ "conf_threshold" : " e.g. 0.8"
20
+ },
21
+ "GatingYoloProcessor" : {
22
+ "model_path" : " " ,
23
+ "conf_threshold" : " e.g. 0.8"
20
24
},
21
25
"TwoStageProcessor" : {
22
26
"classifier_path" : " " ,
23
27
"detector_path" : " " ,
24
28
"detector_class_name" : " " ,
25
- "conf_threshold" : " 0.4"
29
+ "conf_threshold" : " e.g. 0.4"
26
30
},
27
31
"GatedTwoStageProcessor" : {
28
32
"classifier_path" : " " ,
29
33
"detector_path" : " " ,
30
34
"detector_class_name" : " " ,
31
- "conf_threshold" : " 0.4" ,
32
- "thumbs_up_required" : " True/False" ,
33
- "transition_word" : " -"
35
+ "conf_threshold" : " e.g. 0.4" ,
36
+ "thumbs_up_required" : " e.g. True/False" ,
37
+ "transition_word" : " e.g. -"
34
38
},
35
39
"DummyProcessor" : {
36
40
"dummy_input" : " dummy_input_value"
You can’t perform that action at this time.
0 commit comments