-
Notifications
You must be signed in to change notification settings - Fork 21
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
Getting false logo detection #3
Comments
There might be some problems in your training process. You may share the code, I can give a quick checking. |
`` class EpochCheckpoint(Callback): batch_size = 8 model = Model(inputs=[Input1, Input2], outputs=output) if args["model"] is None: batch_size = 8 print(len(train_data),len(test_data)) def image_generator(files,batch_size = 8):
n = len(train_data) checkpoint = EpochCheckpoint('backups/', every=1,startAt=args["start_epoch"]) model.save("model.h5") |
Can you show some generated examples from your code that you are talking about? |
could you share your code |
I trained the model architecture and got good result on train and val dataset. But when I give an unknown brand logo query and its target image its detects the logo but when I give other brands query image keeping target image same even then it detects the logo. E.g I gave bata logo query image and then bata target image it detects the bata logo but when I changed the query image to samsung it still detects bata logo in target image . Where as Ideally it should give blank mask.Please help. I am stuck.
The text was updated successfully, but these errors were encountered: