使用安装好的tensorflow-gpu 进行程序测试时出现异常: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(
代码 public float[] int16tofloat(int a[]) {if(0 != a.length%2 || a.length <= 0) {return null;}int len = a.length/2;float[] c = new float[len];for(int i = 0;i < len;++i) {int b = ((a[2*i]<<16)&0xFFFFFFF