Downloads · 30 days
3
14% of all-time downloads
pravinai/InklyAI
InklyAI is a image classification model from pravinai. Use it when you need a label for an image. It is set up for pytorch. The card lists the license as mit.
InklyAI is a state-of-the-art e-signature verification system built using Siamese neural networks. The model can distinguish between genuine and forged signatures with high accuracy, making it suitable for production…
Downloads · 30 days
3
14% of all-time downloads
All-time downloads
22
Public
Repo size
—
Likes
0
Public
Click a slice to open those files.
.py192 KB · 66%
From the Hugging Face model README
InklyAI is a state-of-the-art e-signature verification system built using Siamese neural networks. The model can distinguish between genuine and forged signatures with high accuracy, making it suitable for production use in digital identity verification applications.
from src.models.siamese_network import SignatureVerifier
# Initialize the verifier
verifier = SignatureVerifier()
# Verify two signatures
similarity, is_genuine = verifier.verify_signatures(
signature1_path,
signature2_path,
threshold=0.5
)
print(f"Similarity: {similarity:.3f}")
print(f"Genuine: {is_genuine}")
The model was trained on a diverse dataset of signature images including:
@software{inklyai2024,
title={InklyAI: Advanced E-Signature Verification System},
author={Kernelseed Team},
year={2024},
url={https://github.com/kernelseed/InklyAI}
}