-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RuntimeError: result type Float can't be cast to the desired output type long int #35
Comments
result type Float can't be cast to the desired output type __int64 same issues |
My environment, torch 1.12 is OK, do you use Python 3.9? |
yes my environment is cu116+torch1.12.0 Python 3.9
…---Original---
From: "Kin-Yiu, ***@***.***>
Date: Fri, Jul 8, 2022 16:48 PM
To: ***@***.***>;
Cc: ***@***.******@***.***>;
Subject: Re: [WongKinYiu/yolov7] RuntimeError: result type Float can't be castto the desired output type long int (Issue #35)
Python-3.8.10 torch-1.12.0+cu102 CUDA:0
My environment, torch 1.12 is OK, do you use Python 3.9?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
The fix is to convert to long the "gain" of the gridspace on declaration. In all lines with change to For some reason newest versions of cuda/torch do not do this cast automatically when needed |
it works thank you :D
…------------------ 原始邮件 ------------------
发件人: "WongKinYiu/yolov7" ***@***.***>;
发送时间: 2022年7月8日(星期五) 晚上6:05
***@***.***>;
***@***.******@***.***>;
主题: Re: [WongKinYiu/yolov7] RuntimeError: result type Float can't be cast to the desired output type long int (Issue #35)
The fix is to convert to long the "gain" of the gridspain on declaration.
In all lines with
gain = torch.ones(7, device=targets.device)
change to
gain = torch.ones(7, device=targets.device).long()
For some reason newest versions of cuda/torch do not do this cast automatically when needed
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
* export end2end onnx model * fixbug * add web demo (#58) * Update README.md * main code update yolov7-tiny deploy cfg * main code update yolov7-tiny training cfg * main code @liguagua752109150 #33 (comment) * main code @albertfaromatics #35 (comment) * main code update link * main code add custom hyp * main code update default activation function * main code update path * main figure add more tasks * main code update readme * main code update reparameterization * Update README.md * main code update readme * main code update aux training * main code update aux training * main code update aux training * main figure update yolov7 prediction * main code update readme * main code rename * main code rename * main code rename * main code rename * main code update readme * main code update visualization * main code fix gain for train_aux * main code update loss * main code update instance segmentation demo * main code update keypoint detection demo * main code update pose demo * main code update pose * main code update pose * main code update pose * main code update pose * main code update trace * Update README.md * main code fix ciou * main code fix nan of aux training #250 (comment) @hudingding * support onnx to tensorrt convert (#114) * fuse IDetect (#148) * Fixes #199 (#203) * minor fix * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve * resolve * resolve * resolve Co-authored-by: AK391 <[email protected]> Co-authored-by: Alexey <[email protected]> Co-authored-by: Kin-Yiu, Wong <[email protected]> Co-authored-by: linghu8812 <[email protected]> Co-authored-by: Alexander <[email protected]> Co-authored-by: Ben Raymond <[email protected]> Co-authored-by: AlexeyAB84 <[email protected]>
I just updated the line 388 in the loss.py to become: |
Imported from WongKinYiu/yolov7@072f76c Squashed commit of the following: commit 072f76c72c641c7a1ee482e39f604f6f8ef7ee92 Author: jpkoponen <[email protected]> Date: Sat Oct 8 00:50:04 2022 +0300 Fix a GPU memory leak in detect. No need to calculate gradients in inference. (#900) Co-authored-by: JKO095 <[email protected]> commit 8b616af63a8b07a82caa938ba409e917853b5555 Author: Alexey S <[email protected]> Date: Tue Oct 4 18:53:54 2022 +0300 Update README.md (#850) commit 8035ee6db9d585ff7e9bbf6b54cf791e8c731ef2 Author: Kin-Yiu, Wong <[email protected]> Date: Wed Sep 28 16:56:31 2022 +0800 main code fix WongKinYiu/yolov7#855 commit 55b90e111984dd85e7eed327e9ff271222aa8b82 Author: Kıvanç Tezören <[email protected]> Date: Fri Sep 16 21:14:01 2022 +0300 Add option to use YOLOv5 AP metric (#775) * Add YOLOv5 metric option * Inform if using v5 metric commit b1850c7dcafc3cdb4fdf002a902d55ea10db481e Author: Maximilian Gangloff <[email protected]> Date: Mon Sep 12 16:45:16 2022 +0200 Fix updated image size not used (#739) Co-authored-by: magangloff <[email protected]> commit 2e99efb27fa059e7bc776e6c79a98ad9268187ed Author: HRan2004 <[email protected]> Date: Mon Sep 12 22:37:21 2022 +0800 fix(utils): missing edge when resample segments (#611) commit 1cb8aa5c9fb8c9e0c0a23677e3fa6c1ded82e8de Author: Damian Deza <[email protected]> Date: Mon Sep 12 11:28:19 2022 -0300 Fixed issue with confidence for single class detectors when exporting (#607) * Fixed issue with confidence for single class detectors when exporting * Typo commit 09d6293f32f38a48de820b6bf47b85736bf8c81c Author: Akash A Desai <[email protected]> Date: Mon Sep 12 19:52:26 2022 +0530 updated Reparameterization weight path & added steps for doing Reparameterization ,also fixed few typos (#552) * Update reparameterization.ipynb * Update reparameterization.ipynb * Update reparameterization.ipynb * Update reparameterization.ipynb * Update reparameterization.ipynb * Add files via upload * Update userdata.sh fix typo of yolov7 commit 44d8ab41780e24eba563b6794371f29db0902271 Author: Kin-Yiu, Wong <[email protected]> Date: Tue Aug 23 08:27:01 2022 +0800 main code update readme commit 24c49f258f100b5a4badb56afdf48677d3c2eb6b Author: Kin-Yiu, Wong <[email protected]> Date: Tue Aug 23 08:25:08 2022 +0800 main figure upload teaser figure commit 064c71e7c261172dd8d7250444c4f5375bebdc66 Author: spacewalk01 <[email protected]> Date: Tue Aug 16 22:23:16 2022 +0900 fix a model inference problem on cpu (#502) * fix model inference problem on cpu * Update keypoint.ipynb commit 36ce6b2087a16bbc2a44bb586d6d802ca6428acb Author: AlexeyAB84 <[email protected]> Date: Tue Aug 16 02:10:07 2022 +0300 Use compute_loss_ota() if there is not loss_ota param or loss_ota==1 commit 6ded32cc8d0ab40ea51f385876c143011ec69197 Author: Alexey <[email protected]> Date: Fri Aug 12 10:16:17 2022 +0300 Update README.md commit f4d34e4b756465f796af33094045a1b67158544a Author: AlexeyAB84 <[email protected]> Date: Fri Aug 12 10:08:57 2022 +0300 Added YOLOv7CoreML.ipynb commit 1b6372059d4d9769318fdcedfc5d3355ce7ab29c Author: Kin-Yiu, Wong <[email protected]> Date: Thu Aug 11 19:53:09 2022 +0800 main code update readme commit 67e692399d61476cfa4d259d7ee3e447ced47124 Author: Kin-Yiu, Wong <[email protected]> Date: Thu Aug 11 19:48:22 2022 +0800 main code upload figures commit 376f0b075bcdf4c460b7db72a2a40207b8650fb5 Author: Kin-Yiu, Wong <[email protected]> Date: Thu Aug 11 19:17:24 2022 +0800 main code update readme commit 3708cdedd2d9348d2c2c0588f62bb1fe574cd1ec Author: Kin-Yiu, Wong <[email protected]> Date: Tue Aug 9 20:06:36 2022 +0800 main code update anchor WongKinYiu/yolov7#272 commit 54d3908a0cefbb01b3eb1592b1d54afd452d9e21 Author: Kin-Yiu, Wong <[email protected]> Date: Tue Aug 9 15:23:42 2022 +0800 main code update anchors commit fef71ef42c182b15c861a869c412f338b3749c95 Author: Wang Xin <[email protected]> Date: Tue Aug 9 14:28:28 2022 +0800 update gitignore (#461) commit 892b603718cda9f118368a07dab700b5309c2ac5 Author: AlexeyAB84 <[email protected]> Date: Tue Aug 9 08:07:05 2022 +0300 Added .gitignore commit 711a16ba576319930ec59488c604f61afd532d5a Author: AlexeyAB84 <[email protected]> Date: Tue Aug 9 07:48:28 2022 +0300 Added param loss_ota for hyp.yaml, to disable OTA for faster training commit 469a4d0e8d50da83158f26844e40829cdfd6a597 Author: AlexeyAB84 <[email protected]> Date: Tue Aug 9 07:46:47 2022 +0300 minor fix commit 8dc755a359459047a26719bd86abae7c4d2f5753 Author: tripleMu <[email protected]> Date: Tue Aug 9 12:26:05 2022 +0800 Add grid concat and fuse such operators (#389) * Add grid concat and fuse so many op * Fix model * Fix other detector * Update yolo.py * Update yolo.py Co-authored-by: Alexey <[email protected]> commit c14ba0c297b3b5fc0374c917db798c88f9dd226c Author: spacewalk01 <[email protected]> Date: Mon Aug 8 16:17:40 2022 +0900 fixed the problem of downloading models (#451) commit 8758cdd8387549978d685b0034ba218036b03848 Author: Taka <[email protected]> Date: Mon Aug 8 15:17:04 2022 +0800 fix darwin platform string (#454) commit 4789bd1a4f5f2e960aefe376473309ca31b5ccbd Author: Kayce001 <[email protected]> Date: Sat Aug 6 11:39:28 2022 +0800 Update keypoint.ipynb (#292) * Update keypoint.ipynb add "with torch.no_grad():" in line 60. * Update keypoint.ipynb commit 591c5b0236c127da1bf949975a4f8bb79c6cd156 Author: AlexeyAB84 <[email protected]> Date: Sat Aug 6 01:45:25 2022 +0300 minor fix commit cfde076fb498ad63386e6c1786fe1d85b6adb255 Author: Taka <[email protected]> Date: Sat Aug 6 05:13:32 2022 +0800 Fix coreml quantization (#434) Instead of importing platform, you can check it by `sys.platform`. By the way, `prefix` is a missing value in this script. commit 1560034c770ee063ee597d23ede04267f905038d Author: Kadir Nar <[email protected]> Date: Fri Aug 5 22:10:21 2022 +0100 added cpu parameter support (#423) commit 72a9c9628a22693a0c3a0eeb44c3be199d6cb1f1 Author: Kin-Yiu, Wong <[email protected]> Date: Thu Aug 4 20:20:51 2022 +0800 main code update WongKinYiu/yolov7#272 commit b8956dd5a5bcbb81c92944545ca03390c22a695f Author: Mohammad Khoshbin <[email protected]> Date: Tue Aug 2 19:25:28 2022 +0430 fix training with frozen layers (#378) commit 1e51f564e07072d5d7bac944801f3dddddb40753 Author: Linaom1214 <[email protected]> Date: Tue Aug 2 22:55:01 2022 +0800 update readme (#396) commit c51c13a23f921c2bc72d49aacc6664c52b55fd1c Author: AlexeyAB84 <[email protected]> Date: Tue Aug 2 01:40:08 2022 +0300 Fixed CoreML export commit 0563c707058b31bee9b7f30d06a94cc6933c88f5 Author: Ian <[email protected]> Date: Mon Aug 1 23:46:25 2022 +0200 Add TorchScript-Lite export (#387) * TorchScript-Lite export * forgot the import commit 0a58f6d1cb4f339a1bbdff400094e747e9b9280b Author: AlexeyAB84 <[email protected]> Date: Tue Aug 2 00:45:17 2022 +0300 minor fix commit cc42a206ef4c4d0cc4998d496123daa6953e0b15 Author: Mohammad Khoshbin <[email protected]> Date: Sat Jul 30 20:13:18 2022 +0430 fix cpu-only training CUDA error (#369) commit 6bacefff5ce5f0ea3ea7c5ce7e003347919c11a7 Author: tripleMu <[email protected]> Date: Fri Jul 29 09:58:57 2022 +0800 Unified output names (#283) commit 5f7d38b12afd77778e537c74cc5099daec78f9f6 Author: AlexeyAB84 <[email protected]> Date: Fri Jul 29 01:38:49 2022 +0300 minor fix commit 8eee99fcc5906633a1e0ecdf0fc47adf4ae7a751 Author: philipp-schmidt <[email protected]> Date: Fri Jul 29 00:01:59 2022 +0200 Add Triton Inference Server deployment (#346) * Add client code * Add README.md Co-authored-by: Philipp Schmidt <[email protected]> commit a7c00297d52f21a71d62bfed72392e309b1c05fa Author: tripleMu <[email protected]> Date: Fri Jul 29 06:01:43 2022 +0800 Support dynamic batch for TensorRT and onnxruntime (#329) * Support dynamic batch for TensorRT and onnxruntime * Fix output name * Add some images * Add dynamic-batch usage notebook * Add example notebook for onnxruntime and tensorrt commit 0d882e553e2fd43f26d79f9f67a0f2cdae0e1a45 Author: Dhia_Oussayed <[email protected]> Date: Thu Jul 28 20:09:52 2022 +0100 Fixed a bug for Hyperparameters Evolution. (#344) * Update hyp.scratch.custom.yaml anchors parameter missing, evolution won't start without. * Update train.py Updated the hyperparameter evolution metadata variable to match the hyp.yaml files for the evolution to run successfully. * Update hyp.scratch.p5.yaml Added the anchors parameter, evolution don't start without it. * Update hyp.scratch.p6.yaml added the anchors parameter for the hyperparameter evolution. * Update hyp.scratch.tiny.yaml added the anchors parameter for the hyperparameters evolution * Update hyp.scratch.custom.yaml * Update hyp.scratch.tiny.yaml * Update hyp.scratch.p5.yaml * Update hyp.scratch.p6.yaml * Update train.py * Update train_aux.py commit 264fc09886e45d1340a68cb5dfa7fd9631cd045d Merge: 954cde6 2a731fc Author: AlexeyAB84 <[email protected]> Date: Thu Jul 28 22:03:15 2022 +0300 Merge branch 'main' of https://github.com/WongKinYiu/yolov7 commit 954cde65ab74a9cfb17e82cf92cc409cdadecf3e Author: AlexeyAB84 <[email protected]> Date: Thu Jul 28 22:03:09 2022 +0300 Fuse IAuxDetect commit 2a731fc5d2f90389c9ac07e3b51acd4b22b71826 Author: Mohammad Khoshbin <[email protected]> Date: Thu Jul 28 20:19:06 2022 +0430 fix reparametrization for any nc (#342) commit 4c207e1ae6422e3cf0bc95fa15df9444d3039101 Author: AlexeyAB84 <[email protected]> Date: Thu Jul 28 02:04:34 2022 +0300 minor fix commit 13594cf6d42bc3a49ff226570aa77b6bf7615f7f Author: Mohammad Khoshbin <[email protected]> Date: Thu Jul 28 03:05:17 2022 +0430 add tensor.detach for yolo_pose bug (#333) commit 86cc5d0c4f1e26f122dcba079ce564548c07fa86 Author: ksnzh <[email protected]> Date: Thu Jul 28 00:25:06 2022 +0800 fix IDetect fuseforrward onnx export (#332) commit a4724d55924708b4cee0dacbc875545b4b3abe3f Author: Mohammad Khoshbin <[email protected]> Date: Wed Jul 27 19:17:28 2022 +0430 non-max-suppression function fixed for one class model conf. (#305) commit 7a7cba744abe0fa2820d040fad24b66367929def Author: tripleMu <[email protected]> Date: Tue Jul 26 23:03:20 2022 +0800 Fix yolo for torch.onnx.export (#314) commit b3c41653ba9f470dcb3dbad45fdc73ccc2edd7a2 Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 25 15:56:41 2022 +0800 main code upload paper pdf commit da5fe65e901a2e8c05e8e5c578b449f64c3448af Author: AlexeyAB84 <[email protected]> Date: Mon Jul 25 05:13:04 2022 +0300 minor fix commit d10b1835c7f2e9fd5555298e9a4e29ae41601ffe Author: Alexey <[email protected]> Date: Mon Jul 25 05:12:40 2022 +0300 Update README.md commit 6d53a210ad0e45207980e6200b09c2a83ed6a966 Merge: 703c2ff d489e94 Author: AlexeyAB84 <[email protected]> Date: Mon Jul 25 04:27:35 2022 +0300 Merge branch 'main' of https://github.com/WongKinYiu/yolov7 commit 703c2ff21a9c7acbacf912b99754bccb94241af5 Author: AlexeyAB84 <[email protected]> Date: Mon Jul 25 04:27:28 2022 +0300 minor fix commit d489e9435be86aae84ec93c213a89e567b048610 Author: Alexey <[email protected]> Date: Mon Jul 25 04:01:02 2022 +0300 Update README.md commit 82f26becadb409c3991e996b380b753e42b30cb1 Author: AlexeyAB84 <[email protected]> Date: Mon Jul 25 03:52:20 2022 +0300 Added YOLOv7onnx.ipynb and YOLOv7trt.ipynb commit 13458cd4a2bbbc750e12e8cace4a5b92208eac03 Author: Kin-Yiu, Wong <[email protected]> Date: Sun Jul 24 22:26:53 2022 +0800 main code update readme commit 26c26ce2340678b23fbbfaac67d75be330168b2b Author: Alexey <[email protected]> Date: Sat Jul 23 05:45:07 2022 +0300 Update README.md commit 1c59e43d9d446a0bf7afede40900f3d4588652e6 Author: tripleMu <[email protected]> Date: Sat Jul 23 10:36:51 2022 +0800 Add end2end yolov7 onnx export for TensorRT8.0+ and onnxruntime(testing now) (#273) * Add end2end yolov7 onnx export for TensorRT8.0+ * Add usage in README * Update yolo.py * Update yolo.py * Add tensorrt onnxruntime examples * Add usage in README Co-authored-by: Alexey <[email protected]> commit aae70703f7fbc126fde4971dac767b6fb4e65d02 Author: Alexey <[email protected]> Date: Sat Jul 23 04:54:18 2022 +0300 Update add_nms.py commit a5b853c3fa3766da71374480c67026195eb9fa78 Author: AlexeyAB84 <[email protected]> Date: Fri Jul 22 17:25:11 2022 +0300 minor fix commit e5928b095a8bc93e1416d6b1b3f51183995ab3df Author: AlexeyAB84 <[email protected]> Date: Fri Jul 22 17:04:38 2022 +0300 minor fix commit afdc86f51942aae514e2a78b3b80c62908a55ce1 Author: Linaom1214 <[email protected]> Date: Fri Jul 22 21:24:13 2022 +0800 End2end (#61) * export end2end onnx model * fixbug * add web demo (#58) * Update README.md * main code update yolov7-tiny deploy cfg * main code update yolov7-tiny training cfg * main code @liguagua752109150 WongKinYiu/yolov7#33 (comment) * main code @albertfaromatics WongKinYiu/yolov7#35 (comment) * main code update link * main code add custom hyp * main code update default activation function * main code update path * main figure add more tasks * main code update readme * main code update reparameterization * Update README.md * main code update readme * main code update aux training * main code update aux training * main code update aux training * main figure update yolov7 prediction * main code update readme * main code rename * main code rename * main code rename * main code rename * main code update readme * main code update visualization * main code fix gain for train_aux * main code update loss * main code update instance segmentation demo * main code update keypoint detection demo * main code update pose demo * main code update pose * main code update pose * main code update pose * main code update pose * main code update trace * Update README.md * main code fix ciou * main code fix nan of aux training WongKinYiu/yolov7#250 (comment) @hudingding * support onnx to tensorrt convert (#114) * fuse IDetect (#148) * Fixes #199 (#203) * minor fix * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve * resolve * resolve * resolve Co-authored-by: AK391 <[email protected]> Co-authored-by: Alexey <[email protected]> Co-authored-by: Kin-Yiu, Wong <[email protected]> Co-authored-by: linghu8812 <[email protected]> Co-authored-by: Alexander <[email protected]> Co-authored-by: Ben Raymond <[email protected]> Co-authored-by: AlexeyAB84 <[email protected]> commit 2596994f395a9802b0e17fbda8925c5ace793330 Author: AlexeyAB84 <[email protected]> Date: Thu Jul 21 20:37:15 2022 +0300 minor fix commit 894a93e318b40be26a368bf451aa82bc81c04f62 Author: Ben Raymond <[email protected]> Date: Fri Jul 22 03:07:49 2022 +1000 Fixes #199 (#203) commit dc3e04087dc5f0e010dc6d8ce455723727a02881 Author: Alexander <[email protected]> Date: Fri Jul 22 00:07:08 2022 +0700 fuse IDetect (#148) commit 96390ed2010bcb72a38a81d9a329517405e8c456 Author: linghu8812 <[email protected]> Date: Fri Jul 22 01:06:24 2022 +0800 support onnx to tensorrt convert (#114) commit 4f6e390c9901bcbac2677748e954c9925b491234 Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 21 12:09:25 2022 +0800 main code fix nan of aux training WongKinYiu/yolov7#250 (comment) @hudingding commit de6a5e733d8ce12b1357a00de50120c3c1207f18 Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 21 11:48:57 2022 +0800 main code fix ciou commit 8730e4ba4f961f21c1782c49968d97ae88971a11 Author: Alexey <[email protected]> Date: Thu Jul 21 04:53:38 2022 +0300 Update README.md commit 1e1e0d52d99f444d8df0262b6e621cf2cab6068b Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 20 14:46:12 2022 +0800 main code update trace commit 8b72ac7792edc75e21b0133d56890f42af7fd336 Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 18 13:45:26 2022 +0800 main code update pose commit 2e860536626a09337ba95acc693b93818a8ec48f Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 18 13:37:31 2022 +0800 main code update pose commit 1c96029f19c89a2fd69318c4356a24064731e7ef Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 18 13:32:42 2022 +0800 main code update pose commit 30ff17ec9583c4527068daf37e4b39cad7d016a2 Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 18 13:32:03 2022 +0800 main code update pose commit 6bfc471480bd52c3dbd70792e238520d1302b42e Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 18 13:31:25 2022 +0800 main code update pose demo commit e3186245c37129d8c3a8c04a5de62cde8f9abf97 Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 18 10:11:19 2022 +0800 main code update keypoint detection demo commit 987dd8324b0a28a6769f9ecafda31561fb55e5e4 Author: Kin-Yiu, Wong <[email protected]> Date: Sun Jul 17 07:44:28 2022 +0800 main code update instance segmentation demo commit 2267955898f54d476e83db8c7f1df14d54636a22 Author: Kin-Yiu, Wong <[email protected]> Date: Fri Jul 15 13:43:12 2022 +0800 main code update loss commit ef4dde425bd0603de373389dad55c43c5d6c219e Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 14 16:49:38 2022 +0800 main code fix gain for train_aux commit 4cebf4000a81458c1f5f163888809e2e5161b4ba Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 14 16:41:48 2022 +0800 main code update visualization commit 3070e1320959554b7f0cdb92b1a5131adc735231 Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 14 08:59:35 2022 +0800 main code update readme commit 31e2a9059884b5f8de67b1650a2cc36894cb3b8f Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 21:57:21 2022 +0800 main code rename commit e2a5a543fb3c055e0c2d7502c56ffefd84f15483 Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 21:57:05 2022 +0800 main code rename commit 82204345b60bc46c928728b6a791e63dcafee2a9 Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 21:56:48 2022 +0800 main code rename commit 8f23bae54955e92c548c6cebe2da7f00cfe7b48b Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 21:56:28 2022 +0800 main code rename commit 6bc5a4da7b438bbaa591eac5701c619f40e1509a Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 12:54:06 2022 +0800 main code update readme commit 9a1be4e0f7d28f8404c3734f4ca84acbee819d61 Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 12:47:17 2022 +0800 main figure update yolov7 prediction commit 5d135f70d8d463fff33c6719fa7399998547cf85 Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 10:46:18 2022 +0800 main code update aux training commit bedf15a0b455dcf879ecbc06d4f8f2b81397b8de Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 10:36:20 2022 +0800 main code update aux training commit ec69700a9cfbd3bf07c3898ea481a5657f4eeb5e Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 10:31:45 2022 +0800 main code update aux training commit f7945dc747e5d470313e91a88d13e36a4c47ca8c Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 10:11:42 2022 +0800 main code update readme commit 7bdafde7c6c8fae84a32041deb0dd0797ca21750 Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 09:52:34 2022 +0800 Update README.md commit 261b1cfdb2d08469cb7579a6faa67d40871f63dc Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 13 09:51:08 2022 +0800 main code update reparameterization commit f5d50fa8c0e49cc75d21309b35857616c71c55e9 Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 11 18:20:53 2022 +0800 main code update readme commit 04991d916c2f2b2b411af1abaa23629e348de7de Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 11 18:09:09 2022 +0800 main figure add more tasks commit 46f8fc17d95808dccd2177d9ed0d8cb7735719e1 Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 11 15:30:56 2022 +0800 main code update path commit 09b8e34ae594b1c10568f7aeb653e7bd1c564127 Author: Kin-Yiu, Wong <[email protected]> Date: Mon Jul 11 13:29:40 2022 +0800 main code update default activation function commit e44853eb4bba231e1427231af931dd58fb35b74e Author: Kin-Yiu, Wong <[email protected]> Date: Sun Jul 10 10:37:03 2022 +0800 main code add custom hyp commit b1a23d493821e5fc3da01fea39d268313a789f7f Author: Kin-Yiu, Wong <[email protected]> Date: Sun Jul 10 10:33:30 2022 +0800 main code update link commit 54627aa3ac2fb3aaa270afbba218d4bf7a9443d2 Author: Kin-Yiu, Wong <[email protected]> Date: Sun Jul 10 10:19:41 2022 +0800 main code @albertfaromatics WongKinYiu/yolov7#35 (comment) commit c587e8f467e90f009d71540779be3772231c4ed2 Author: Kin-Yiu, Wong <[email protected]> Date: Sun Jul 10 10:00:19 2022 +0800 main code @liguagua752109150 WongKinYiu/yolov7#33 (comment) commit eef4f2c92851e4d72c0630ee1f3615144353a73e Author: Kin-Yiu, Wong <[email protected]> Date: Sat Jul 9 13:25:21 2022 +0800 main code update yolov7-tiny training cfg commit a7fa81ff497c0c6e031b2082ee19116a21169abc Author: Kin-Yiu, Wong <[email protected]> Date: Sat Jul 9 13:24:19 2022 +0800 main code update yolov7-tiny deploy cfg commit 0d1be180908500a92686d15773cb1462515de4de Author: Alexey <[email protected]> Date: Sat Jul 9 07:24:10 2022 +0300 Update README.md commit 37fbdfefb85264fa8ee842f6adf905a48b523981 Author: AK391 <[email protected]> Date: Sat Jul 9 07:23:14 2022 +0300 add web demo (#58) commit dfc68171c1d9c3a853e8d0d62ca3e129be1e4092 Author: AlexeyAB84 <[email protected]> Date: Sat Jul 9 02:26:32 2022 +0300 Added requirements.txt commit 9cd377429fd361e64557a2ede5613619f0a75073 Author: Alexey <[email protected]> Date: Fri Jul 8 21:31:37 2022 +0300 Update README.md commit 5f1b78ad614b45c5a98e7afdd295e20033d5ad3c Author: Kin-Yiu, Wong <[email protected]> Date: Fri Jul 8 17:12:36 2022 +0800 main code set top_k temporally commit 8f2e9e701cffaa7469435306e2f8a67ed4236e88 Author: Kin-Yiu, Wong <[email protected]> Date: Fri Jul 8 17:04:00 2022 +0800 main code update training instruction commit 941585a465b7b31211800b74c3a353de45603480 Author: Kin-Yiu, Wong <[email protected]> Date: Fri Jul 8 16:50:39 2022 +0800 main code upload cfg commit 9ee1835a7e38254182bdddd46d33484e05d009b7 Author: Alexey <[email protected]> Date: Fri Jul 8 05:25:03 2022 +0300 Update README.md commit 8fb51236492095eb55ea426ffdeb943f46f17289 Author: Alexey <[email protected]> Date: Thu Jul 7 08:13:49 2022 +0300 Create LICENSE.md commit 9dc0bed9d5bba629bd3b6c5f211e367540545ffe Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 7 11:11:51 2022 +0800 main description add link to pre-trained model commit 9a00c173a44bfcf3a58cc2a60e37deb6a1fb9e03 Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 7 08:24:04 2022 +0800 Update README.md commit 9528dfb657b829004b9bd1fbc7c0b976aa265fbc Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 7 00:26:03 2022 +0800 main description update readme commit 0de48a8233825567bc3e242085fae511bf200e79 Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 7 00:04:20 2022 +0800 main figure add performance commit 3a62ea0a169f03f0db6fbca764a9575da8880a95 Author: Kin-Yiu, Wong <[email protected]> Date: Thu Jul 7 00:02:25 2022 +0800 main description update readme commit a1c6e04c7c06c4ca4de80e890fc615721f24ea84 Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 6 23:23:27 2022 +0800 main code code for inference commit bc3e6482864abe277404cfcfe3dda5be68d9c10d Author: Kin-Yiu, Wong <[email protected]> Date: Wed Jul 6 23:14:07 2022 +0800 Initial commit
* export end2end onnx model * fixbug * add web demo (#58) * Update README.md * main code update yolov7-tiny deploy cfg * main code update yolov7-tiny training cfg * main code @liguagua752109150 WongKinYiu/yolov7#33 (comment) * main code @albertfaromatics WongKinYiu/yolov7#35 (comment) * main code update link * main code add custom hyp * main code update default activation function * main code update path * main figure add more tasks * main code update readme * main code update reparameterization * Update README.md * main code update readme * main code update aux training * main code update aux training * main code update aux training * main figure update yolov7 prediction * main code update readme * main code rename * main code rename * main code rename * main code rename * main code update readme * main code update visualization * main code fix gain for train_aux * main code update loss * main code update instance segmentation demo * main code update keypoint detection demo * main code update pose demo * main code update pose * main code update pose * main code update pose * main code update pose * main code update trace * Update README.md * main code fix ciou * main code fix nan of aux training WongKinYiu/yolov7#250 (comment) @hudingding * support onnx to tensorrt convert (#114) * fuse IDetect (#148) * Fixes #199 (#203) * minor fix * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve * resolve * resolve * resolve Co-authored-by: AK391 <[email protected]> Co-authored-by: Alexey <[email protected]> Co-authored-by: Kin-Yiu, Wong <[email protected]> Co-authored-by: linghu8812 <[email protected]> Co-authored-by: Alexander <[email protected]> Co-authored-by: Ben Raymond <[email protected]> Co-authored-by: AlexeyAB84 <[email protected]>
* export end2end onnx model * fixbug * add web demo (#58) * Update README.md * main code update yolov7-tiny deploy cfg * main code update yolov7-tiny training cfg * main code @liguagua752109150 WongKinYiu/yolov7#33 (comment) * main code @albertfaromatics WongKinYiu/yolov7#35 (comment) * main code update link * main code add custom hyp * main code update default activation function * main code update path * main figure add more tasks * main code update readme * main code update reparameterization * Update README.md * main code update readme * main code update aux training * main code update aux training * main code update aux training * main figure update yolov7 prediction * main code update readme * main code rename * main code rename * main code rename * main code rename * main code update readme * main code update visualization * main code fix gain for train_aux * main code update loss * main code update instance segmentation demo * main code update keypoint detection demo * main code update pose demo * main code update pose * main code update pose * main code update pose * main code update pose * main code update trace * Update README.md * main code fix ciou * main code fix nan of aux training WongKinYiu/yolov7#250 (comment) @hudingding * support onnx to tensorrt convert (#114) * fuse IDetect (#148) * Fixes #199 (#203) * minor fix * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve * resolve * resolve * resolve Co-authored-by: AK391 <[email protected]> Co-authored-by: Alexey <[email protected]> Co-authored-by: Kin-Yiu, Wong <[email protected]> Co-authored-by: linghu8812 <[email protected]> Co-authored-by: Alexander <[email protected]> Co-authored-by: Ben Raymond <[email protected]> Co-authored-by: AlexeyAB84 <[email protected]>
* export end2end onnx model * fixbug * add web demo (#58) * Update README.md * main code update yolov7-tiny deploy cfg * main code update yolov7-tiny training cfg * main code @liguagua752109150 WongKinYiu/yolov7#33 (comment) * main code @albertfaromatics WongKinYiu/yolov7#35 (comment) * main code update link * main code add custom hyp * main code update default activation function * main code update path * main figure add more tasks * main code update readme * main code update reparameterization * Update README.md * main code update readme * main code update aux training * main code update aux training * main code update aux training * main figure update yolov7 prediction * main code update readme * main code rename * main code rename * main code rename * main code rename * main code update readme * main code update visualization * main code fix gain for train_aux * main code update loss * main code update instance segmentation demo * main code update keypoint detection demo * main code update pose demo * main code update pose * main code update pose * main code update pose * main code update pose * main code update trace * Update README.md * main code fix ciou * main code fix nan of aux training WongKinYiu/yolov7#250 (comment) @hudingding * support onnx to tensorrt convert (#114) * fuse IDetect (#148) * Fixes #199 (#203) * minor fix * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve conflict * resolve * resolve * resolve * resolve Co-authored-by: AK391 <[email protected]> Co-authored-by: Alexey <[email protected]> Co-authored-by: Kin-Yiu, Wong <[email protected]> Co-authored-by: linghu8812 <[email protected]> Co-authored-by: Alexander <[email protected]> Co-authored-by: Ben Raymond <[email protected]> Co-authored-by: AlexeyAB84 <[email protected]>
Same issue as this with torch 1.12
With an older version of torch, everything works.
The text was updated successfully, but these errors were encountered: