ZHR1997

Results 4 issues of ZHR1997

If I want to train on the coco training set I generated, where do I need to modify the code? (Such as category number, category name, etc.)

import onnx from onnx_tf.backend import prepare onnx_model = onnx.load("ch_mobile_infer_clipChanged.onnx") tf_rep = prepare(onnx_model) Traceback (most recent call last): File "", line 1, in File "/zhr/onnx-tensorflow/onnx_tf/backend.py", line 66, in prepare return cls.onnx_model_to_tensorflow_rep(model,...

pytorch中lstm的代码如下: self.rnn = nn.LSTM(nIn, nHidden, num_layers=1, bidirectional=True) 能够成功转换到onnx,但是在onnx转到rknn的时候fail,代码如下 ![image](https://user-images.githubusercontent.com/33384210/105482023-c9075f80-5ce2-11eb-875f-0849ff887f56.png) 报错如下: ![image](https://user-images.githubusercontent.com/33384210/105482068-dae90280-5ce2-11eb-91aa-6ac9589adbc7.png) 通过Netron查看onnx该层的结构图如下: ![image](https://user-images.githubusercontent.com/33384210/105482126-efc59600-5ce2-11eb-83df-76e5b8ea3418.png) 我猜想会不会是sequence_lens参数没有导致的?如果是的话,要如何对代码进行修改呢?如果不是的话,又是什么原因导致这个问题的出现,要如何去修改?

When I train my own data, I set rand_crop to false. Then when the trained model is tested on the training set, there is no box on the output image,...