Hello everyone,
I am trying to compile the TensorFlow 2 weight file for the Ultra96v2 board. I am following this tutorial: https://github.com/Xilinx/Vitis-AI-Tutorials/blob/master/Design_Tutorials/08-tf2_flow/README.md. In the compiling step, ZCU102 and U50 boards are defined using specific arch.json files. For ZCU102, /opt/vitis_ai/compiler/arch/DPUCZDX8G/ZCU102/arch.json is used, while for U50 /opt/vitis_ai/compiler/arch/DPUCAHX8H/U50/arch.json file is used. My questions are:
1. How do I create this file for the Ultra96v2 board? Or is this already provided by Avnet/Xilinx?
2. After getting this file, can I use the following command to compile the model for the Ultra96v2 board?
vai_c_tensorflow2 --model quant_model/q_model.h5 --arch <ultra-96-v2>/arch.json --output_dir compiled_model --net_name customcnn
Thank you!