Faster_RCNN_for_Open_Images_Dataset_Keras
Faster_RCNN_for_Open_Images_Dataset_Keras copied to clipboard
record_path = os.path.join(base_path, 'model/record.csv')
I am getting the error, because record.csv not provided - please provide one
File b'Datasets/Open_Images_Datasets_v5/model/record.csv' does not exist: b'Datasets/Open_Images_Datasets_v5/model/record.csv'
me too...
Did anyone find the relevant record.csv? Thanks
Did any of you find the solution to this issue??
I am not exactly sure of the consequences, but I did get through this error by replacing
record_df = pd.read_csv(record_path)
with:
record_df = pd.DataFrame(columns=['mean_overlapping_bboxes', 'class_acc', 'loss_rpn_cls', loss_rpn_regr', 'loss_class_cls', 'loss_class_regr', 'curr_loss', 'elapsed_time', 'mAP'])
meaning both if and else statements have the same assignment of record_df
Hey anyone able to find record.csv? Please help @nadavv, @blackstar2019, @YenHong818, @sara782
Hey anyone able to find record.csv? Please help @nadavv, @blackstar2019, @YenHong818, @sara782
Have you tried replacing the code I mentioned?
Hey anyone able to find record.csv? Please help @nadavv, @blackstar2019, @YenHong818, @sara782
Have you tried replacing the code I mentioned?
Yes. It worked. Thank you @nadavv
You're welcome!
On Sun, Mar 21, 2021 at 12:51 PM rutuja1409 @.***> wrote:
Hey anyone able to find record.csv? Please help @nadavv https://github.com/nadavv, @blackstar2019 https://github.com/blackstar2019, @YenHong818 https://github.com/YenHong818, @sara782 https://github.com/sara782
Have you tried replacing the code I mentioned?
Yes. It worked. Thank you @nadavv https://github.com/nadavv
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/RockyXu66/Faster_RCNN_for_Open_Images_Dataset_Keras/issues/43#issuecomment-803553443, or unsubscribe https://github.com/notifications/unsubscribe-auth/AG2FDOFBV5ERBW76JFSVP2LTEXFTPANCNFSM4KCDDINA .
@rutuja1409 Was there any consequences? after replced @nadavv solution