在Tensorflow中,Session.run和Operation.run有什么区别

时间:2018-08-01 22:13:31

标签: python python-3.x tensorflow

下面的fun longToByteArray(value: Long): ByteArray { val bytes = ByteArray(8) ByteBuffer.wrap(bytes).putLong(value) return Arrays.copyOfRange(bytes, 4, 8) } fun intToUInt8(value: Int): ByteArray { val bytes = ByteArray(4) ByteBuffer.wrap(bytes).order(ByteOrder.LITTLE_ENDIAN).putInt(value and 0xff) var array = Arrays.copyOfRange(bytes, 0, 1) return array } Session.run为什么给我不同的答案?

Operation.run

0 个答案:

没有答案