blueoil
blueoil copied to clipboard
Lookup without DivideBy255 pre-processor
Lookup
operator assumes that input data is normalized to [0, 1]
.
But it is not efficient:
pre-processor divides input by 255.
func_Lookup
multiplies input by 255.
It is totally waste...
blueoil convert
should check meta.yaml
whether it has DivideBy255
pre-processor, and func_Lookup
should take additional parameter to determine multiply 255 or not.