How to train on custom Dataset? #150
Unanswered
deshwalmahesh
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Before someone sends me to the model training repo, please let me just explain.
I want to fine tune the existing model, say
PubLayNet/faster_rcnn_R_50_FPN_3x
model for my own task BUT for a Single Class, ex:text
Detection only where the mapping is as{0: "Text", 1: "Title", 2: "List", 3:"Table", 4:"Figure"}
Or maybe on
HJDataset
where classes are{1:"Page Frame", 2:"Row", 3:"Title Region", 4:"Text Region", 5:"Title", 6:"Subtitle", 7:"Other"}
.I found this Kaggle Notebook on fine tuning with Detectron2 for fine tuning but the problem is what I have described earlier that I just want to train on 1 class.
What would be the changes that I'll have to do? How would the
things_classes
look like?Detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions