Giter Club home page Giter Club logo

Comments (3)

banasraf avatar banasraf commented on May 31, 2024

Hi @wangshaobobetter.
I assume you're using Triton to perform inference. In that case to connect the DALI model with TensorRT network you should use medel ensembles.
You can see an example of resnet50 setup in our repository here.

The DALI preprocessing model is setup using the following config file:

name: "dali"
backend: "dali"
max_batch_size: 256
input [
{
    name: "DALI_INPUT_0"
    data_type: TYPE_UINT8
    dims: [ -1 ]
}
]
 
output [
{
    name: "DALI_OUTPUT_0"
    data_type: TYPE_FP32
    dims: [ 3, 224, 224 ]
}
]

The model.dali file should be placed in the model directory inside a folder named with version name, e.g. 1, so the directory structure would look like this:

model_repository/
    dali/
        config.pbtxt
        1/
            model.dali

To connect the this model together with the network you should add the ensemble model. It's configured like this:

name: "ensemble_dali_resnet50"
platform: "ensemble"
max_batch_size: 256
input [
  {
    name: "INPUT"
    data_type: TYPE_UINT8
    dims: [ -1 ]
  }
]
output [
  {
    name: "OUTPUT"
    data_type: TYPE_FP32
    dims: [ 1000 ]
  }
]
ensemble_scheduling {
  step [
    {
      model_name: "dali"
      model_version: -1
      input_map {
        key: "DALI_INPUT_0"
        value: "INPUT"
      }
      output_map {
        key: "DALI_OUTPUT_0"
        value: "preprocessed_image"
      }
    },
    {
      model_name: "resnet50_trt"
      model_version: -1
      input_map {
        key: "input"
        value: "preprocessed_image"
      }
      output_map {
        key: "output"
        value: "OUTPUT"
      }
    }
  ]
}

from dali_backend.

wangshaobobetter avatar wangshaobobetter commented on May 31, 2024

Thank you for answering my question. As you said, I am using Triton to perform inference. I have learned the example of resnet50 setup in your repository, and I have followed the tutorial of README to build model.dali successfully. The directory structure is the same as you showed.
I want to use C++ to do the preprocessing part, can we make "Model. Dali" into something similar to a dynamic link library directly call?

@banasraf
@jantonguirao

from dali_backend.

banasraf avatar banasraf commented on May 31, 2024

Okay, so, if I understand correctly, you have some custom piece of C++ code and you want to use it instead of DALI for preprocessing?
In that case, Triton gives a way of doing that by providing a custom backend. You can read more about implementing a custom backend here: triton-inference-server/backend. An example of such backend implemented is here.

from dali_backend.

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.