Git Product home page Git Product logo

Comments (3)

YashBansod avatar YashBansod commented on May 24, 2024 6

well If you are using tensorflow >1.1.0 you will have to do the following changes:

  • Line 60 of model.py
    from conf_loss = tf.nn.sparse_softmax_cross_entropy_with_logits(logits, y_true_conf)
    to conf_loss = tf.nn.sparse_softmax_cross_entropy_with_logits(logits=logits, labels=y_true_conf)

  • Line 71 of model.py
    from loc_loss = tf.select(smooth_l1_condition, loc_loss_l2, loc_loss_l1)
    to loc_loss = tf.where(smooth_l1_condition, loc_loss_l2, loc_loss_l1)

  • Line 164 and 165 of model.py
    from final_pred_conf = tf.concat(1, preds_conf)
    final_pred_loc = tf.concat(1, preds_loc)
    to final_pred_conf = tf.concat(preds_conf, 1)
    final_pred_loc = tf.concat(preds_loc, 1)

and the inference.py should run

from ssd_tensorflow_traffic_sign_detection.

sudonto avatar sudonto commented on May 24, 2024

Find the aolution here.

from ssd_tensorflow_traffic_sign_detection.

mstmustisnt avatar mstmustisnt commented on May 24, 2024

@YashBansod thank you, that helped!

from ssd_tensorflow_traffic_sign_detection.

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.