siamese-triplet icon indicating copy to clipboard operation
siamese-triplet copied to clipboard

Siamese and triplet networks with online pair/triplet mining in PyTorch

Results 23 siamese-triplet issues
Sort by recently updated
recently updated
newest added

hello, after we train the siamese and triplet network embeddings, how should we use it to classify?

Hi, I am currently working on my master's thesis and plan to use this code as part of my project, is there a way to obtain permission for this? I...

Hi, it is possible to make the triplet selector run much faster both in cpu and cuda. It run 5x faster in my setup. It consists of just converting some...

In your case, 2-dimensional embeddings are learned and visualized. If >=3 dimensional embeddings were learned and then dimension-reduced to 2D using UMAP or t-SNE like algorithms, will the visualization look...

I was wondering if we could add adaptive thresholds and Quadruplet Networks that excel on these task for better results. Would be more than happy to open pull requests for...

Hi there i'm using this repo (awesome job by the way) to pre-train a model following the online triplet approach Since i want to obtain embeddings of 512 dimensions instead...

https://twitter.com/alfcnz/status/1133372277876068352 Unfortunately that triplet loss is flawed. The most offending negative sample has zero gradient. That power of 2 should be a power of ½.I feel bad so many people...

Great work! Thanks for sharing such elegant codes. I have a small question, in TripletMNIST(Dataset) class. your annotation about testsets is "Test: Creates fixed triplets for testing" However, in the...

Hi, I noticed in the triplet selection process, the distance matrix is calculated, which is square L2 norm between embedding vectors. Based on the distance matrix, the triplets are selected...