- xml parser use xml.etree.ElementTree instead of BeautifulSoup4 #87 #107 @ruimashita @tkng
- Added pattern matching and new optimization passes #53 @antonionevado @lpng @n-nez
- Adding support for resnet #65 @nlpng
- Optimizer selector #28 @lm-konda @iizukak
- Update pyyaml version for security #142 @ruimashita
- Improve kernel transform #73 @lm-konda
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.6/bin/apio", line 11, in load_entry_point('apio==0.4.0b5', 'console_scripts', 'apio')() File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/click/core.py", line 722, in call return self.main(*args, **kwargs) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/click/core.py", line 676, in main _verify_python3_env() File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/click/_unicodefun.py", line 118, in _verify_python3_env 'for mitigation steps.' + extra) RuntimeError: Click will abort further execution because Python 3 was configured to use ASCII as encoding for the environment. Consult http://click.pocoo.org/python3/for mitigation steps. | |
This system lists a couple of UTF-8 supporting locales that you can pick from. The following suitable locales where discovered: af_ZA.UTF-8, am_ET.UTF-8, be_BY.UTF-8, bg_BG.UTF-8, ca_ES.UTF-8, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
save json: output/output.json | |
Traceback (most recent call last): | |
File "run.py", line 152, in <module> | |
run_test() | |
File "/home/iizuka/venv/lib/python3.6/site-packages/click/core.py", line 722, in __call__ | |
return self.main(*args, **kwargs) | |
File "/home/iizuka/venv/lib/python3.6/site-packages/click/core.py", line 697, in main | |
rv = self.invoke(ctx) | |
File "/home/iizuka/venv/lib/python3.6/site-packages/click/core.py", line 895, in invoke | |
return ctx.invoke(self.callback, **ctx.params) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./blueoil.sh convert config/camvid.yml saved/camvid_20190227153410/ | |
#### Generate output files #### | |
/usr/local/pyenv/versions/python3.6/lib/python3.6/importlib/_bootstrap.py:219: RuntimeWarning: compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util' does not match runtime version 3.6 | |
return f(*args, **kwds) | |
----------------- config value -------------------- | |
{'BATCH_SIZE': 1, | |
'CLASSES': ['Sky', | |
'Building', | |
'Column_Pole', | |
'Road', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./blueoil.sh convert config/camvid.yml saved/camvid_20190227153410/ | |
#### Generate output files #### | |
/usr/local/pyenv/versions/python3.6/lib/python3.6/importlib/_bootstrap.py:219: RuntimeWarning: compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util' does not match runtime version 3.6 | |
return f(*args, **kwds) | |
----------------- config value -------------------- | |
{'BATCH_SIZE': 1, | |
'CLASSES': ['Sky', | |
'Building', | |
'Column_Pole', | |
'Road', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
obj-m := mymodule3.o | |
SRC := $(shell pwd) | |
all: | |
$(MAKE) -C $(KERNEL_SRC) M=$(SRC) | |
modules_install: | |
$(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Note: Mention Each package in individual line | |
# cascaded representation with line breaks are not valid in this file. | |
IMAGE_INSTALL_append = " peekpoke" | |
IMAGE_INSTALL_append = " gpio-demo" | |
IMAGE_INSTALL_append = " packagegroup-base-extended" | |
IMAGE_INSTALL_append = " cmake" | |
IMAGE_INSTALL_append = " lmsensors-sensorsdetect" | |
IMAGE_INSTALL_append = " python-pyserial" | |
IMAGE_INSTALL_append = " libftdi" | |
IMAGE_INSTALL_append = " python3-pip" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# supported task types are 'classification', 'object_detection' and 'semantic_segmentation'. | |
task_type: object_detection | |
network_name: LMFYoloQuantize | |
dataset: | |
format: OpenImagesV4 | |
train_path: /path/to/openimages_face | |
test_path: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git grep OPTIMIZER_CLASS | |
configs/core/classification/darknet_cifar10.py:NETWORK.OPTIMIZER_CLASS = tf.train.MomentumOptimizer | |
configs/core/classification/darknet_quantize_cifar10.py:NETWORK.OPTIMIZER_CLASS = tf.train.MomentumOptimizer | |
configs/core/classification/darknet_quantize_ilsvrc_2012.py:NETWORK.OPTIMIZER_CLASS = tf.train.MomentumOptimizer | |
configs/core/classification/lmnet_cifar10.py:NETWORK.OPTIMIZER_CLASS = tf.train.MomentumOptimizer | |
configs/core/classification/lmnet_cifar100.py:NETWORK.OPTIMIZER_CLASS = tf.train.MomentumOptimizer | |
configs/core/classification/lmnet_openimagesv4.py:NETWORK.OPTIMIZER_CLASS = tf.train.MomentumOptimizer | |
configs/core/classification/lmnet_quantize_cifar10.py:NETWORK.OPTIMIZER_CLASS = tf.train.MomentumOptimizer | |
configs/core/classification/lmnet_quantize_cifar100.py:NETWORK.OPTIMIZER_CLASS = tf.train.MomentumOptimizer | |
configs/core/classification/lmnet_quantize_cifar100_distribute.py:NETWORK.OPTIMIZER_CLASS = tf.train.MomentumOptimizer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# supported task types are 'classification', 'object_detection' and 'semantic_segmentation'. | |
task_type: classification | |
network_name: LmnetV1Quantize | |
dataset: | |
format: Caltech101 | |
train_path: /home/user/datasets/cifar/cifar/train/ | |
test_path: /home/user/datasets/cifar/cifar/test/ |