image-similarity-deep-ranking icon indicating copy to clipboard operation
image-similarity-deep-ranking copied to clipboard

Results 19 image-similarity-deep-ranking issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/50090044/173223528-6d476efd-3714-4697-b32a-f32793fa3858.png)

Hello! Thank you for sharing such a useful method of comparing image similarity. I encountered a problem when I tried to implement the code tripletSampler.py. I executed the program by...

Hi, Cool work! I was wondering if it would be possible to upload pre-trained network; that would greatly free up the hassle of training a similarity function and would be...

I used 600,000 face data for training, but the test results were very poor. Does your model after training work well?

Hi, I'm getting this error while running deepRanking.py. Any help of why this is the case? Also, all I did was pass query_and_triplets.txt file to deepRanking.py. Am I doing it...

Changed the directory name being printed in error message to the correct value.

Hi, I think there is some problem about your triplt_loss function Here is your function: __EPSILON = K.epsilon() def _loss_tensor(y_true, y_pred): y_pred = K.clip(y_pred, _EPSILON, 1.0-_EPSILON) loss = tf.convert_to_tensor(0,dtype=tf.float32) g...

Could you please show me how to run code with this dataset? https://sites.google.com/site/imagesimilaritydata/download

Line 28 of `deepRanking.py` contains the following: ```python x = Lambda(lambda x_: K.l2_normalize(x,axis=1))(x) ``` Should not we be passing `x_` rather than `x` to `K.l2_normalize`?