This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Arm Compute lib graph model - Convolution Layer with Dilation

hi

im trying to pipe a proprietry model using arm compute library, looking at the examples in the examples folder, couldn't find how to set dilation in ConvolutionLayer() routine

here is an example i saw:

ConvolutionLayer(
             7U, 7U, 64U,
             get_weights_accessor(data_path, "/cnn_data/resnet50_model/conv1_weights.npy"),
             std::unique_ptr<arm_compute::graph::ITensorAccessor>(nullptr),
             PadStrideInfo(2, 2, 3, 3))
            .set_name("conv1/convolution")

where to set dilation?

thanks!