zdl

Results 28 comments of zdl

> i run main_export_onnx.py in python3 and it show error > > File "main_export_onnx.py", line 89, in forward x[0] = x[0].view(-1, self.no) TypeError: 'tuple' object does not support item assignment...

> Updates. > > After this bug fixed, the ONNX file is located in the directory precise in the main_extraction code file. Hi i have other problems,at line 89 inset...

> What's the error you have ? > […](#) > On Sat, Jun 25, 2022, 09:46 zdl ***@***.***> wrote: Updates. After this bug fixed, the ONNX file is located in...

> Seems you deleted a line of code. `x[0] = x[0].view(-1, self.no)` It should look like : ` x = x[1]` `x[0] = x[0].view(-1, self.no)` `x[1] = x[1].view(-1, self.no)` `x[2]...

> 一直出现如下报错①: TypeError: 'NoneType' object is not subscriptable 利用yolov6m.py重新开始训练出现以下问题: RuntimeError: CUDA error: device-side assert triggered > > 请问大家都知道如何解决吗?谢谢 用v5或者v7不好吗,,,yolov6目前项目还是存在诸多问题,,光数据集加载都是问题多多。一部yolov6,半步血泪史,不是在出问题就是在出问题的路上

> There is conv1d in my pytorch model. When converting to tensorRT, how to use the tensorRT API to define the conv1d layer? TensorRT貌似不支持1维卷积,可以去英伟达论坛看看,有人提到了并且官方也给出了回答

> 看输出 tab 页。打印什么 ![image](https://user-images.githubusercontent.com/46549527/175808746-04c775f9-36e3-459f-bdf2-288849002880.png)

> 我们设置了临时的key,你可以执行trtpy set-key sxaitestkk 这个key是临时的,会常常更新,你可以试试 好的 已经加入群里了

> @QIANXUNZDL123 > > https://github.com/cfzd/Ultra-Fast-Lane-Detection-v2/blob/c903880678454dfd9b55a63022368db05c00bc6d/evaluation/tusimple/lane2.py#L62-L63 > > > 因为你ground truth中的样本数和你的预测的样本数不一致导致的 > PS 你训练时的loss都nan了,你可能需要降低学习率 ground truth是test_lable.json吗??我打印json_gt是output输出得txt文件牙。。。。

> @QIANXUNZDL123 我在使用 tusimple 格式訓練自定義的資料集時也遇到相同的問題, 你可以先檢查 len(json_gt) 與 len(json_pred) 數量各是多少 我的情況是json_pred只有一個 發現原因是下面這段 > > > https://github.com/cfzd/Ultra-Fast-Lane-Detection-v2/blob/c903880678454dfd9b55a63022368db05c00bc6d/evaluation/eval_wrapper.py#L832-L837 > > 因為 name 都是一樣的,所以造成只會生成一個預測結果 可以修改你的資料路徑 或是改res.find('your_path') 讓 name 不要重複 大佬 我的也是json_pred只有一个,能不能看看你怎么修改的,,0.0