Da Mu
Da Mu
hello,I've read the paper on EINV2, but I still don't understand the orbital alignment problem. Does SELDnet's output format also have this problem? Can you give me an example to...
Hello, thank you for your openness. As a first-year graduate student, it has been greatly helpful to me. However, I would like to ask when the "Data augmentation" and "Track-wise...
Hi, i have a problem about how to calculate the salsa-lite. What is the meaning of "arg" in your paper. Here is the link to the formula picture. https://github.com/kakarotto007/typora/blob/main/Snipaste_2023-04-25_15-13-16.png @karnwatcharasupat...
Hello, i have a question about how to calculate phase_vector. Why "phase_vector = np.angle(X[:, :, 1:] * np.conj(X[:, :, 0, None]))" ? Thank you very much!
Hello!I have a question about dataset. Does the dataset used in the results of the baseline method include the synthetic recordings? I only use the dataset of [https://zenodo.org/record/7880637](url) to reproduce,...
我现在正在按着此教程导出inference模型:https://github.com/PaddlePaddle/PaddleVideo/blob/develop/applications/FightRecognition/README.md 但是我现在遇到了一个问题:https://github.com/PaddlePaddle/PaddleVideo/blob/4bee9be28efad952e85179ea3e42fe4b84b54f08/tools/export_model.py#L87 这里的输入维度为五个维度,我想将网络的输入改为[batch_size * cfg.num_seg, 3, cfg.target_size, cfg.target_size]这四个维度。当我简单的去掉第一个维度时,导出inference模型失败。 我查看网络模型源码:https://github.com/PaddlePaddle/PaddleVideo/blob/develop/paddlevideo/modeling/backbones/resnet_tweaks_tsm.py, 发现此网络的输入确实为四个维度,但是为什么导出inference模型时是需要五个维度呢?我想将网络的输入改为四个维度应该怎么做呢? 谢谢解答🙏