ghimiremukti

Results 2 issues of ghimiremukti

with this training script: project_root="......../simpsons_proj/pre-trained-keras-example" model="resnet50" path_to_data=$project_root/"the-simpsons-characters-dataset/simpsons_dataset" path_to_weight_directory=$project_root/"weight_directory" path_to_tensorboard_logdir=$project_root/"tensorboard_direcoty" max_epochs=20000 python train.py \ --pretrained_model=$model \ --data-dir=$path_to_data \ --weight-directory=$path_to_weight_directory \ --tensorboard-directory=$path_to_tensorboard_logdir \ --epochs=$max_epochs the training does not proceed with the following...

following the tutorial (https://medium.com/@sshleifer/how-to-finetune-tensorflows-object-detection-models-on-kitti-self-driving-dataset-c8fcfe3258e9), object_detection_kitti/object_detection/kitti_data directory which further contains training and testing images and labels as below ![capture](https://user-images.githubusercontent.com/13733258/38283752-c8347b0e-3785-11e8-88e6-983f240a0787.JPG) When run $ cd object_detection_kitti/object_detection $ python create_dataset.py it throws an error:...