Faster_RCNN_for_Open_Images_Dataset_Keras icon indicating copy to clipboard operation
Faster_RCNN_for_Open_Images_Dataset_Keras copied to clipboard

record_path = os.path.join(base_path, 'model/record.csv')

Open blackstar2019 opened this issue 5 years ago • 9 comments

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'

blackstar2019 avatar Jan 02 '20 14:01 blackstar2019

me too...

YenHong818 avatar Apr 07 '20 07:04 YenHong818

Did anyone find the relevant record.csv? Thanks

nadavv avatar May 08 '20 18:05 nadavv

Did any of you find the solution to this issue??

sara782 avatar May 25 '20 14:05 sara782

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

nadavv avatar May 26 '20 11:05 nadavv

Hey anyone able to find record.csv? Please help @nadavv, @blackstar2019, @YenHong818, @sara782

rutuja1409 avatar Mar 12 '21 16:03 rutuja1409

Hey anyone able to find record.csv? Please help @nadavv, @blackstar2019, @YenHong818, @sara782

Have you tried replacing the code I mentioned?

nadavv avatar Mar 14 '21 08:03 nadavv

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

rutuja1409 avatar Mar 21 '21 10:03 rutuja1409

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 .

nadavv avatar Mar 21 '21 10:03 nadavv

@rutuja1409 Was there any consequences? after replced @nadavv solution

methmal1997 avatar Jun 14 '22 06:06 methmal1997