'2021/04/09'에 해당되는 글 4건

  1. 2021.04.09 tf checkpoint to pb
  2. 2021.04.09 gdb break
  3. 2021.04.09 labelImg
  4. 2021.04.09 tf docker

기본으로 제공되는 건 없으려나?

 

[링크 : https://stackoverflow.com/questions/56766639/how-to-convert-ckpt-to-pb]

 

$ saved_model_cli convert tensorrt
usage: saved_model_cli convert [-h] --dir DIR --output_dir OUTPUT_DIR --tag_set TAG_SET {tensorrt} ...
saved_model_cli convert: error: the following arguments are required: --dir, --output_dir, --tag_set

'프로그램 사용 > yolo_tensorflow' 카테고리의 다른 글

Learning without Forgetting (LwF)  (0) 2021.04.12
딥러닝 학습 transfer, quantization  (0) 2021.04.12
labelImg  (0) 2021.04.09
tf docker  (0) 2021.04.09
tensorboard 사용법  (0) 2021.04.08
Posted by 구차니

귀찮아서 b main 으로만 쓰는건 함정 ㅋㅋ

for 반복문으로 인해서 귀찮아서 결국에는 라인으로 브레이크 잡는법 찾은것도 함정

 

gdb> break filename:line
gdb> b filename:line
gdb> b function

[링크 : https://stackoverflow.com/questions/5276988/]

 

브레이크 목록보기

gdb> info break
gdb> i b

[링크 : https://ccrma.stanford.edu/~jos/stkintro/Useful_commands_gdb.html]

Posted by 구차니

yolo나 tensorflow 에서 학습/검증을 위한 이미지 라벨링 프로그램

pip3를 통해 설치가 가능하며 나름 깔끔한 디자인이다.

 

좀 아쉬운건, 수정하고 다음 이미지 누르면 저장할까요 물어보는 것도 아니고

자동 저장되는 것도 아닌 그냥 날아간다는 점 -_ㅠ

 

pip3 install labelImg
labelImg
labelImg [IMAGE_PATH] [PRE-DEFINED CLASS FILE]
Annotations are saved as XML files in PASCAL VOC format, the format used by ImageNet. Besides, it also supports YOLO format

[링크 : https://github.com/tzutalin/labelImg]

[링크 : http://blog.naver.com/baek2sm/221886666289]

[링크 : https://hwauni.tistory.com/entry/API-Custom-Object-Detection-API-Tutorial-데이터-준비-Part-1]

'프로그램 사용 > yolo_tensorflow' 카테고리의 다른 글

딥러닝 학습 transfer, quantization  (0) 2021.04.12
tf checkpoint to pb  (0) 2021.04.09
tf docker  (0) 2021.04.09
tensorboard 사용법  (0) 2021.04.08
ssd mobilnetv2 to tflite warnings  (0) 2021.04.07
Posted by 구차니

'프로그램 사용 > yolo_tensorflow' 카테고리의 다른 글

tf checkpoint to pb  (0) 2021.04.09
labelImg  (0) 2021.04.09
tensorboard 사용법  (0) 2021.04.08
ssd mobilnetv2 to tflite warnings  (0) 2021.04.07
ssd mobilenetv2 python load pb, tflite  (0) 2021.04.07
Posted by 구차니