vgg10-radioml mapping of IQ to input and classification to output of generated IP #886
-
Hello, I generated the IP from this tutorial: My goal is to test this in hardware on a RFSoC. I have some questions:
Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi,
The output is an 8-bit integer (AXIS requires stream widths of multiples of 8) that gives the index (class) with the highest logit/score. This is because a Top-1 node has been inserted at the end of the model, which is implemented with a "LabelSelect" node in the accelerator. |
Beta Was this translation helpful? Give feedback.
Hi,
That should work. Please report back if you encountered any issues here.
The input (each I and Q compnent) is quantized to 8 bit integers, so you have a 2x8=16 bit input stream. I don't recall in which order the I/Q are arranged, I would need to double check. The lower 8 bits will be one component and the upper 8 bits the other component.
The output is an 8-bit integer (AXIS requires stream widths of multiples of 8) that gives the index (class) with the highest logit/score. This is because a Top-1 node has been inserted at the end of the model, which is implemented with a "LabelSelect" node in the accelerator.