GithubHelp home page GithubHelp logo

Comments (4)

sawantkumar avatar sawantkumar commented on May 2, 2024

Hi @saad-koukous

Can you provide more details like the code for handling input and output in both cases ( in python and c) and also the model execution code?

from tensorflow.

saad-koukous avatar saad-koukous commented on May 2, 2024

Hi @sawantkumar, Thank you for your response. However, I can't share the .tflite model and data.
but i can share with you how i'm allocating input tensor and output tensor.
interprater method:

// Allocate tensors
    if (TfLiteInterpreterAllocateTensors(interpreter) != kTfLiteOk) {
        fprintf(stderr, "Failed to allocate tensors\n");
        return 1;
    }
const TfLiteTensor* input_tensor = TfLiteInterpreterGetInputTensor(interpreter, 0);
//and here i'm looping on a file to load data in the input_tensor

Signature Runner method

// Allocate tensors
    if (TfLiteSignatureRunnerAllocateTensors(signature_runner) != kTfLiteOk) {
        fprintf(stderr, "Failed to allocate tensors\n");
        return 1;
    const char *signature_inputName = TfLiteSignatureRunnerGetInputName(signature_runner, 0);
    printf("Signature input name: %s\n", signature_inputName);
    }
    TfLiteTensor *input_tensor = TfLiteSignatureRunnerGetInputTensor(signature_runner, signature_inputName);
    //and here i'm looping on a file to load data in the input_tensor

python

interpreter.allocate_tensors()
signature = interpreter.get_signature_runner('signature_name')
infe = serving_default(input=input) #same input of the c program
output = infe['output']

from tensorflow.

sawantkumar avatar sawantkumar commented on May 2, 2024

Hi @saad-koukous ,

Can you provide me with some more details like what kind of model this is, an object detection or some nlp model, what do you mean when you say you don't get the same output? Also if you can let me what specific layers are being used and what activation functions are being used in your tflite model, it will be easier for me to debug the issue.

from tensorflow.

saad-koukous avatar saad-koukous commented on May 2, 2024

Hi @sawantkumar,
The model is designed for image segmentation, and when I input the same data into the TensorFlow Lite model using both Python and the C API, I'm not getting the same results at all; in fact, the results are significantly different.
the input is a matrix where elements are float32.

from tensorflow.

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.