luizgh / sigver

Signature verification package, for learning representations from signature data, training user-dependent classifiers.
BSD 3-Clause "New" or "Revised" License
82 stars 46 forks source link

not getting good results in pretrained model with real time images, why? #19

Open MuruganR96 opened 4 years ago

MuruganR96 commented 4 years ago

I was tried with Pre-trained models,

SigNet SigNet-F lambda 0.95

with Cosine similarity between two image features (like: one genuine, one forgery signature).

feature1 = base_model(input1)
feature2 = base_model(input2)
cosine_similarity(features1, features2)

real1.png, real2.png -> similarity: 0.31142098 real1.png, fake1.png -> similarity: 0.2714578 real1.png, fake2.png -> similarity: 0.6426417 real2.png, fake1.png -> similarity: 0.18943718 real2.png, fake2.png -> similarity: 0.6238067

here how i concluded is 60% above similarity means, both as verified, else rejected. but 2/5 cases successfully verified. 40% accuracy only i got it from pretrained model.

I have few doubts @luizgh, @gonultasbu and @atinesh-s sir. please help to resolve,

Thanks & Regards Murugan Rajenthiran

luizgh commented 4 years ago

@MuruganR96 if the data distribution changes too much, these models will probably not work very well, so you would be better off collecting data and re-training / finetuning the models. If you have a few samples per user, you can try the "meta-learning" approach, as it does some fine-tuning for the users.

The datasets used to train these models were obtained in an "lab" fashion (you can read about it in the papers that introduced them), but involved people writing signatures on a clean piece of paper (no background), and usually in a single session (less variability). Unfortunately we do not have datasets with "real-world" conditions available for research in the academy.

MuruganR96 commented 4 years ago

@luizgh, @atinesh-s sir, I guess right now we don't have re-training / finetuning option in sigver.

i will do training from scratch with more datasets sir.

I have a doubt sir, please correct me.

please tell me how many users can i take to train @luizgh, @atinesh-s sir?

henryle97 commented 3 years ago

I think you can try euclidean distance

ofgagliardi commented 2 years ago

I'm also getting bad results, even using the example images and example.py code. Tried using the proposed formula, euclidean distance and even modifing the proposed formula with instead of max() using mean().

Could it be different libs versions?

luizgh commented 2 years ago

@ofgagliardi are you training writer-dependent classifiers as described in the article, or just using the network to extract features and compare the features from different signatures? If you are doing the latter, I recommend checking out this paper https://arxiv.org/abs/1807.10755, that uses this network to extract features and train a single "writer-independent" classifier. I hope this helps.