GithubHelp home page GithubHelp logo

Comments (2)

ibadr avatar ibadr commented on August 30, 2024 1

Revisiting this, since one of the main use cases of onnx2keras for our group is to go PyTorch/CoreML -> ONNX -> Keras -> Tensorflow.js. However, the latter will not be able to run Python Lambda functions. What would you recommend in order to be able to avoid Lambda functions altogether?

from onnx2keras.

pedrofrodenas avatar pedrofrodenas commented on August 30, 2024

In my case a had a problem with the Clip layer, I realized that Cliping equals applying a Relu activation function so I replace in operation_layers.py in line 37 the following:

    relu_layer = keras.layers.ReLU(max_value=ensure_numpy_type(layers[node.input[2]]).astype(int))

    # def target_layer(x, vmin=0, vmax=ensure_numpy_type(layers[node.input[2]]).astype(int)):
    #     import tensorflow as tf
    #     return tf.clip_by_value(x, vmin, vmax)
    # layer = keras.layers.Lambda(target_layer, name=keras_name)
    # lambda_func[keras_name] = target_layer

    layers[node_name] = relu_layer(input_0)


That avoids using lambda layer

from onnx2keras.

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.