Giter VIP home page Giter VIP logo

Comments (2)

omoindrot avatar omoindrot commented on May 26, 2024

It is possible to add normalization at this point in the model_fn function:

# -----------------------------------------------------------
# MODEL: define the layers of the model
with tf.variable_scope('model'):
    # Compute the embeddings with the model
    embeddings = build_model(is_training, images, params)

    # Optionally L2 normalize the embeddings
    if params.l2_normalize:
        embeddings = tf.nn.l2_normalize(embeddings, axis=1)

I followed the paper In Defense of the Triplet Loss for Person Re-Identification when I did it without L2 normalization:

We did not use a normalizing layer in any of our final experiments. For one, it does not dramatically regularize the network by reducing the available embedding space: the space spanned by all D-dimensional vector of fixed norm is still a D − 1- dimensional volume. Worse, an output-normalization layer can actually hide problems in the training, such as slowly collapsing or exploding embeddings.

Concerning the margin, a default margin of 0.5 usually works well even if the embeddings are not constrained to the L2 unit sphere.

from tensorflow-triplet-loss.

ggsato avatar ggsato commented on May 26, 2024

Thanks for the code and the explanation. That's interesting.

I haven't read the paper, yet, but will do!

from tensorflow-triplet-loss.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.