ZhenLei Xu

Results 17 comments of ZhenLei Xu

tf端和th端的图片同道不一样,tf是channel_last,而th是channel_first,因此需要图片通道的转换

``` if data_format == 'channels_first': # 'RGB'->'BGR' x = x[:, ::-1, :, :] # Zero-center by mean pixel x[:, 0, :, :] -= 103.939 x[:, 1, :, :] -= 116.779...

不知道了,当时vgg16模型提出来的时候就是这样定义的,有兴趣可以读读VGG16论文

No,this is based on theano and keras,and i use jupyter notebook,so you can run jupyter notebook on cmd

是的,估计版本变化

Unlike the ARM-based platform (e.g., VCK190), the AIE address space is not visible to the x86 host. Can the AIE address space is visible to the ARM host?

![image](https://user-images.githubusercontent.com/13307469/179875603-57dde38f-07e0-41ca-9cf7-6757d8ee2e60.png)

``` git clone https://github.com/Xilinx/cmakeModules git clone https://github.com/Xilinx/mlir-aie mkdir build; cd build cmake -GNinja \ -DLLVM_DIR=${absolute path to LLVMBUILD}/lib/cmake/llvm \ -DMLIR_DIR=${absolute path to LLVMBUILD}/lib/cmake/mlir \ -DLibXAIE_DIR=${absolute path to LibXAIE} \ -DCMAKE_MODULE_PATH=${absolute...