You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to start your simple demo but i am getting this kind of error, so one directory is missing or something like that
File "image_demo.py", line 9, in
from tracker import re3_tracker
File "/home/mgruber/devel/git/re3-tensorflow/tracker/re3_tracker.py", line 12, in
from re3 import network
ModuleNotFoundError: No module named 're3'
The text was updated successfully, but these errors were encountered:
from tracker import network
from re3_utils.util import bb_util
from re3_utils.util import im_util
from re3_utils.tensorflow_util import tf_util
# Network Constants
from constants import CROP_SIZE
from constants import CROP_PAD
from constants import LSTM_SIZE
from constants import LOG_DIR
from constants import GPU_ID
from constants import MAX_TRACK_LENGTH
and then in network.py, change to:
from re3_utils.tensorflow_util import tf_util
from re3_utils.tensorflow_util.CaffeLSTMCell import CaffeLSTMCell
from constants import LSTM_SIZE
I tried to start your simple demo but i am getting this kind of error, so one directory is missing or something like that
File "image_demo.py", line 9, in
from tracker import re3_tracker
File "/home/mgruber/devel/git/re3-tensorflow/tracker/re3_tracker.py", line 12, in
from re3 import network
ModuleNotFoundError: No module named 're3'
The text was updated successfully, but these errors were encountered: