-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The steps of model training #6
Comments
I only want to train the part of detection , without the OCR recognition |
You need to transform your data to LBP by get_lbp_data(). After that, feed the LBP data to train_cascade(). |
So,there only use get_lbp_data() and train_cascade() in the training? I have train the model by your data yesterday for 16 hours, but there have nothing result and log, Is this normal? |
Yes, for the training of detection classifier, it only involves
I can't recall the detail of them right now, but both functions should finish within few minutes. |
I found opencv_train() in your code , could this function take place of train_cascade(). and have the same result? |
This function will train Adaboost classifier for OpenCV's build-in Machine learning module, and that won't be compatible with my Adaboost. I add this function just for comparison between my Adaboost and OpenCV's Adaboost. |
Hi , I want to get the Binary MASK for every ER*, Can this be implemented in your code? |
That is feasible, I had already try that. However, both time and space complexity will increase, especially space complexity because there are enormous amount of ER in an image. |
I want to put the Binary MASK to CNN, so could you tell where you have realize it in your code,Thank you |
There are 2 way you can use:
|
Thank you very much, And I want to continue training on the basis of the last training result, so I would like to ask if I can use the last training result to initialize the current training model, If this way is ok, what should to change |
I am sorry, I don't get it. What do you mean "training on the basis of the last training result"? |
the last training result is the "strong.classifier" and "weak.classifier", The "training on the basis of the last training result" is like the finetune in the deep learning |
Hi, Thank you for your work , Can you tell me The steps of model training more in detail , which function will be used, Thank you
The text was updated successfully, but these errors were encountered: