omaiyiwa
omaiyiwa
### Search before asking - [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and found no similar bug report. ### YOLOv5 Component Export ### Bug Hello, When I try to convert...
I unzipped the compressed package according to the tutorial and used the Edge browser, but still prompted that my region does not support it
拼多多可以吗
1.Hello, in amazon-sagemaker-local-mode/pytorch_yolov5_local_model_inference/, the local deploy will have this error, ImportError: 'docker-compose' is not installed. Local Mode features will not work without docker-compose. For more information on how to install...
请问这个还能用吗
该怎么转换后的yolov5模型,调用摄像头,检测模型中的某个类别,在屏幕上只画这个类别的框,保存检测图片 目前我是这样做,能只输出人信息,但是屏幕会画其它框。 import time from ax import pipeline pipeline.load([ 'libsample_vin_ivps_joint_vo_sipy.so', '-p', '/home/config/yolov5s.json', '-c', '2', ]) while pipeline.work(): time.sleep(0.001) tmp = pipeline.result() # print(tmp) if tmp and tmp['nObjSize']: for i in...
调用gpu预测
我通过pip install cnocr -i https://pypi.doubanio.com/simple 和 pip install onnxruntime==1.15 -i https://pypi.doubanio.com/simple 现在使用没有任何问题,但是cpu占用达到了100% 当我尝试使用gpu版本,我的cuda版本是11.8,我首先卸载了onnxruntime 然后pip install cnocr[ort-gpu] -i https://mirrors.aliyun.com/pypi/simple 通过这样去加载ocr = CnOcr(cand_alphabet="0123456789") 这时候程序给了我一个警告, ` [ 0 ; 9 3 m 2...
https://github.com/sipeed/sipeed_wiki/assets/85824812/e9262dc6-7454-47e7-b689-11b056692aaa
在类中初始化卡顿
我有一个类似这样的类 ` self.ocr = PaddleOCR(use_angle_cls=False, lang="ch", show_log=False) self.configparser = configparser.ConfigParser() self.configparser.read(config_ini) self.intersect_value = float(self.configparser['check_config']['intersect_value']) self.amps_value = ast.literal_eval(self.configparser['check_config']['amps_value']) self.device_choose = (self.configparser['device_detect']['device']) self.conf = float(self.configparser['device_detect']['conf_check']) self.classes = self.str_to_bool(self.configparser['device_detect']['classes_check']) self.max_det = int(self.configparser['device_detect']['max_det_check']) def...
### 💡 Your Question I found this class in the original repository “YoloDarknetFormatDetectionDataset”, I found that such a format is supported in its examples1, data_dir └── train/test/val ├── images │...