KeyError: 'train_dataloader' #1853
Answered
by
gaotongxiao
frankstorming
asked this question in
Q&A
-
I prepare a rctw format dataset,then convert it into OCRDataset format. code in rctw.py
code in dbnet_resnet50-oclip_1200e_rctw.py
|
Beta Was this translation helpful? Give feedback.
Answered by
gaotongxiao
Apr 12, 2023
Replies: 1 comment 3 replies
-
The config looks alright. What is the exact command you were running and the full error traceback? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I see. You have overwritten
train_dataloader
first and then tried to access the one in the_base_
, which no longer existed. Removing the later line and only modifying thetrain_dataloader
variable should be fine.