AnouarITI
AnouarITI
Hello, I trained a ResNet model on Keras, then I followed the getting started a notebook to use hls4ml for research purposes. First, please check the config output using the...
Hello, I have a use case where I want to introduce a bitwise operation or as a custom layer. As a 1st step, I trained a simple model with 8-bit...
## Prerequisites Please talk to us before creating a new feature request. So that you can check that the idea is not already in active development. You can present your...
I have the following model: ``` x_in = Input(shape=(1024,1,2)) x = Permute((3,1,2))(x_in) x = Conv2D(8 , (7,1), padding='same', name='C1')(x) x = ReLU(name='C1_relu')(x) x = Conv2D(16, (7,1), padding='same', name='C2')(x) x =...
I trained an XGBClassifier model, and now I want to convert it to an ONNX format. It should be straightforward forward using this code: ``` import onnxmltools from skl2onnx.common.data_types import...
Hi, I am new to taso. I am trying to get my first step, so I installed everything as it is supposed to be. Then, I used this example code...
Hello, I am trying to generate a bitstream directly for the ZCU104. However, when I checked the generated HLS project found out that: 1- There is no AXI bridge. 2-...
Hello, I want to extract the range doppler map from the raw ADC data and plot it (speed in x-axis and range in y-axis). How can I get such a...
I have a large-scale problem where I use the L1-regularized least square for compressed sensing by [ Stephen Boyd ](https://web.stanford.edu/~boyd/l1_ls/). However, the computation takes something like 170 seconds, which drove...
I have a model with a SeLU activation function (Similar to ReLU). I want to run the model on the ZCU104 design. How can I add support for this activation...