Johnson Lee

Results 7 comments of Johnson Lee

@chinasilva This will yield `JSONDecodeError`: ```python Exception in thread parser-001: Traceback (most recent call last): File "*/lib/python3.11/threading.py", line 1038, in _bootstrap_inner self.run() File "*/lib/python3.11/threading.py", line 975, in run self._target(*self._args, **self._kwargs)...

我没有责怪的意思,我已经找客服退了。 关键是早上一个人在群里问我怎么少了1000代币,我说不可能啊,没人出现这个问题。 然后紧接着,中午的时候我的代币就被花光了。 纵观Euro脚本,没有看广告的部分,所以不会乱点; 但是代码中有记录代币和金币的位置,我猜想可能是这个部分出了问题。 有待进一步考证。

The network expects BGR inputs during inference, you can use the following code to verify in Jupyter Notebook: ```python import cv2 import numpy as np import torch from PIL import...

Because it saves states of the net, optimizer, scheduler and recorder simultaneously: https://github.com/Turoad/CLRNet/blob/7269e9d1c1c650343b6c7febb8e764be538b1aed/clrnet/utils/net_utils.py#L8-L20 To make your model size consistent with the one provided in the https://github.com/Turoad/CLRNet/releases, simply modify code above...

It seems that the `@torch.jit.script` above function `quat_to_mat` should be removed otherwise it will raise exception.

When generate the data infos: ``` python -m pcdet.datasets.kitti.kitti_dataset create_kitti_infos tools/cfgs/dataset_configs/kitti_dataset.yaml ``` The output is: ```py Traceback (most recent call last): File "", line 189, in _run_module_as_main File "", line...

Actually, the error is caused by `kornia` dropping JIT support in favor of `TorchDynamo`. Related links: - https://github.com/kornia/kornia/issues/2200 - https://github.com/kornia/kornia/pull/2424 The code change that causes the error is: https://github.com/kornia/kornia/commit/e98fd8c9e695ffb1507f747f5421e7b1cad7be64#diff-a8f3e0de21b707884a7a9a8a02a24848470a376b1b49bc585f7a88d8794f167bR584. While...