Hi, I want to add a script node where I decode the results of a neural network.
Of course, I would also be able to do this on the host, but would like to do this on-device due to performance reasons. However, the modules available on a script node are (as I understand it) limited. Specifically, I would like to do some lightweight post processing using numpy. Is ist possible to make numpy available in a script node?
Also, is it even a good idea to do the decoding of NN results and post-processing steps such as NMS in a script node? What trade-offs are to be considered?