You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
## What this patch does to fix the issue.
Lookup operator supports inputs without normalized to 0〜1:
- `blueoil convert` command check network config whether DivideBy255 pre-processor exists or not
- `func_Lookup` takes new parameter `use_divide_by_255`
- `generate_project.py` has new option `-div` / `-no-div` to set `use_divide_by_255`
- set `use_divide_by_255` from whether DivideBy255 pre-processor exists or not
## Link to any relevant issues or pull requests.
Fixblue-oil#1157 .
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 checkmeta.yaml
whether it hasDivideBy255
pre-processor, andfunc_Lookup
should take additional parameter to determine multiply 255 or not.The text was updated successfully, but these errors were encountered: