blueoil
blueoil copied to clipboard
Bring Deep Learning to small devices
``` masuda@leapmind-server-26:~/Project/hadusam/blueoil$ docker-compose run blueoil init Traceback (most recent call last): File "/usr/local/pyenv/versions/python3.6/bin/blueoil", line 6, in from pkg_resources import load_entry_point File "/usr/local/pyenv/versions/3.6.10/envs/python3.6/lib/python3.6/site-packages/pkg_resources/__init__.py", line 3261, in @_call_aside File "/usr/local/pyenv/versions/3.6.10/envs/python3.6/lib/python3.6/site-packages/pkg_resources/__init__.py", line 3245,...
Conversion between floating point value ↔ decimal string representation cause some small error. Several solution exists: - Using hexadecimal representation (But not allowed in C++14 standard) - Embedding as array...
In lmfyolo config file, we use default `score_threshold = 0.05`. If we change the `score_threshold` to another value. We may get different mAP. Here, I try to change the `score_threshold`...
The following error occurred when running blueoil convert for ilsvrc_2012: _TypeError: 'property' object is not iterable_ Config file: `blueoil/configs/core/classification/darknet_quantize_ilsvrc_2012.py` Dataset file: `blueoil/datasets/ilsvrc_2012.py`
shuffle in `_TFDSReader` in [dataset_iterator.py](https://github.com/blue-oil/blueoil/blob/master/blueoil/datasets/dataset_iterator.py) has no random seed. We must set random seed for shuffle for reproducibility
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
* early return bad ```py if cond: # long code return something else: return None ``` good ```py if not cond: return None # long code ``` ---- * integer...
As far as the contents are concerned, the difference between the two is whether or not Python 2 is supported. I think it's a better to merge the data_processor.py from...
A following warning message comes when we run the command of `make build`. ``` WARNING: You are using pip version 20.0.2; however, version 20.1 is available. You should consider upgrading...
`blueoil/converter/templates/debug/keep_me.md` includes information about `-dbg` flag for `generate_project.py`. It should be placed at right place.