蟒蛇 3.6
团结 2019
我正在尝试找到将特征图数据传输到统一的最佳解决方案。
我想以字节为单位发送数据。但是我没有找到如何将其编码为字节,然后统一解码。
基本上是一个 4d 数组,需要根据我的理解将其转换为字节
蟒蛇片
for fmap in feature_maps:
bytes = []
bytes.append(fmap)
arrays_of_features.append(bytes)
data = np.array(arrays_of_features, dtype=float) # this is not working because of the fact is multidimensional array apparently.
print(fmap)
c.sendall(data.tobytes())
统一块:byte[] bytes = new byte[4000]; int idxUsedBytes = client.Receive(bytes);
floatsReceived = new float[idxUsedBytes / 4];
Buffer.BlockCopy(bytes, 0, floatsReceived, 0, idxUsedBytes);
print(floatsReceived[0]);
婷婷同学_
相关分类