Guanghan / ROLO

ROLO is short for Recurrent YOLO, aimed at simultaneous object detection and tracking
Apache License 2.0
883 stars 278 forks source link

no module named models.rnn #52

Open skywo1f opened 4 years ago

skywo1f commented 4 years ago

Traceback (most recent call last): File "./experiments/testing/ROLO_network_test_all.py", line 30, in from tensorflow.models.rnn import rnn, rnn_cell ImportError: No module named models.rnn

alsawaf commented 4 years ago

did you manage to solve it ?

Niveditakatta commented 4 years ago

This issue is solved for me by replacing this from tensorflow.models.rnn import rnn_cell with from tensorflow.python.ops import rnn_cell

Chamuelchen commented 3 years ago

create a folder named models/rnn in your tensorflow environment packages then put two files 'rnn.py','rnn_cell.py' in folder update/src then you can solve it.