Kentaro Iizuka
Kentaro Iizuka
Currently, we are saving `config.yaml` the contents is same as Python config. IMO, nobody are using `config.yaml`. https://github.com/blue-oil/blueoil/blob/master/blueoil/utils/config.py#L214-L236
We do not use `output_event.py`. So we can remove. https://github.com/blue-oil/blueoil/blob/master/blueoil/cmd/output_event.py Related to this issue, We also can remove `pytablewriter` dependency, Because `pytablewriter` is only used from `output_event.py`.
We use easydict to access dictionary. https://github.com/blue-oil/blueoil/blob/master/setup.cfg#L23 But the library longer maintenance(~2years). https://pypi.org/project/easydict/ Maybe we should rewrite Easydict like module. I want to remove library dependence.
We don't have script in `lmnet` anymore. But make file use `lmnet` directory. https://github.com/blue-oil/blueoil/blob/master/Makefile#L42-L53
IN #455 , tkng-san improve sort oder by `isort`. But some of the files are not ordered. https://github.com/blue-oil/blueoil/blob/master/blueoil/templates/lmnet/classification.tpl.py#L17 We apply isort again and set to CI. note: Please do this...
Currently, we have test file for `profile_model.py` but there are no unit tests. https://github.com/blue-oil/blueoil/blob/master/lmnet/tests/executor_tests/test_profile.py
In current maste branch, First `make build` takes more than 30min. ## master Result of time `make build` at current master `b9db83d` ``` Successfully tagged blueoil_iizuka:v0.11.0-10-gb9db83d real 32m51.528s user 0m1.168s...
