Echo0125 / MAT-Memory-and-Anticipation-Transformer

[ICCV 2023] Official implementation of Memory-and-Anticipation Transformer for Online Action Understanding
Apache License 2.0
44 stars 3 forks source link

rekognition_online_action_detection包安装问题 #18

Closed LuYang-2023 closed 3 months ago

LuYang-2023 commented 3 months ago

Traceback (most recent call last):

  File "tools/train_net.py", line 5, in

    from rekognition_online_action_detection.utils.parser import load_cfg

ModuleNotFoundError: No module named 'rekognition_online_action_detection'。 我已经尝试了谷歌、百度、GPT等搜索方法,并阅读代码中的readme但未发现有相关内容,请您提供一些建议怎么安装rekognition_online_action_detection包。

Ambitious4 commented 3 months ago

import sys sys.path.append("")

add your specific "path/to/src", which means that sys.path.append("path/to/src"), then you can solve this problem

LuYang-2023 commented 3 months ago

import sys sys.path.append("")

add your specific "path/to/src", which means that sys.path.append("path/to/src"), then you can solve this problem I see. Thank you for your answer.