ashuezy
ashuezy
I have migrated data from some other format in another dataset to the yolo one. Now i need to check whether the bbox have been applied properly or not. A...
 `sql_operation(0, oneId, twoId, threeId, fc)` ``` def sql_operation(w, oneId, twoId, threeId, fc): global code_folder fc2=0 try: if w==0: try: mydict = SqliteDict(code_folder+'core.sqlite', autocommit=True) uid = str(oneId)+"_"+str(twoId)+"_"+str(threeId) mydict[uid] = fc...
Q1. Can i use this file as pretrained_weights = http://download.tensorflow.org/models/resnet_v1_152_2016_08_28.tar.gz Q2. Do i have to make changes in the code also ? Q3. If yes, where i need to change...
> python3 convert_weights_pb.py --class_names /opt/person_detection_yolov3_tiny/obj.names --weights_file weights/yolov3-tiny_obj_80000.weights --data_format NHWC --tiny --output_graph pbmodels/frozen_tiny_yolov3_person_detection.pb > Traceback (most recent call last): > File "convert_weights_pb.py", line 60, in > tf.app.run() > File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/platform/app.py", line...
Demo example will sooner or later lead to NullPointerException JFastText.ProbLabel probLabel = jft.predictProba(entireData);//This is bound to throw NullPointerException replace it with List predictionList = jft.predictProba(entireData, 1); if(predictionList.size()>0)//check the size of...
I would like to train this model for Person detection. Please help with the steps.
I have been struggling on this for a long time. Any help would be great.
``` [TensorRT] WARNING: Current optimization profile is: 0. Please ensure there are no enqueued operations pending in this context prior to switching profiles INFO:root:The size of input image is not...
@AlexeyAB I want to integrate my c++ tracker in this. Can you please provide C++ wrapper for this repo ?
``` Namespace(batch_size=4, cfg='cfg/yolov3.cfg', data_config_path='cfg/ICDAR2015.data', epochs=100, img_size=640000, resume=False) Traceback (most recent call last): File "train.py", line 172, in main(opt) File "train.py", line 38, in main model = Darknet(opt.cfg, opt.img_size) File "/opt/github/YOLOv3-quadrangle/models.py",...