摘要: 本篇记录一下TensorFlow中张量的排序方法 tf.sort和tf.argsort # 声明tensor a是由1到5打乱顺序组成的 a = tf.random.shuffle(tf.range(5)) # 打印排序后的tensor print(tf.sort(a,direction='DESC 阅读全文
posted @ 2020-01-23 22:27 赵代码 阅读(3680) 评论(1) 推荐(1) 编辑