Hyeonki Hong

Results 63 comments of Hyeonki Hong

@alexanderswerdlow The total number of layers is only 47?

@alexanderswerdlow Can you share .tflite file? not _edgetpu.tflite I want to compare it with the layer I created.

@alexanderswerdlow If you have time, I want you to see the below link. https://github.com/hhk7734/tensorflow-yolov4/blob/master/test/make_edgetpu_tflite.ipynb https://github.com/hhk7734/tensorflow-yolov4/issues/20 using input_size=416, inference time is ~60ms.

![result (1)](https://user-images.githubusercontent.com/21096989/90586272-bf4c6e00-e211-11ea-88b8-8753f3ff46f3.png) I am training yolov4-tiny with activation set to relu. The inference result using weights(mAP50-29%) is as above. I don't know if this will help.

![yolov4-tiny](https://user-images.githubusercontent.com/21096989/90595403-ca11fd80-e227-11ea-9720-ee3172a0ce5b.png) Using yolov4-tiny.weights, I trained 300 times with batch_size=32. The result is as above.

Ref - https://wiki.loliot.net/docs/etc/project/yolov4/yolov4-training - https://github.com/hhk7734/tensorflow-yolov4 ```python from yolov4.tf import YOLOv4 yolo = YOLOv4() yolo.classes = "coco.names" yolo.make_model(activation1="relu") yolo.load_weights("yolov4-tiny-relu.weights", weights_type="yolo") yolo.inference(media_path="kite.jpg") yolo.inference(media_path="road.mp4", is_image=False) ```

Ref: https://docs.loliot.net/books/flutter/page/flutter-engine-for-linux-arm64

@limbouser Modified the documentation while building it on a new board. Would you like to repeat it again with the link below?? https://docs.loliot.net/link/152#bkmrk-sysroot Mabey it is the same way as...

https://github.com/flutter/engine/commits/master/shell/platform/linux/config/BUILD.gn Added host-sidetarget-side compilation dependency

`engine/src/build/config/linux/pkg-config.py` ```python def SetConfigPath(options): """Set the PKG_CONFIG_LIBDIR environment variable. This takes into account any sysroot and architecture specification from the options on the given command line. """ sysroot = options.sysroot...