摘要: import tensorflow as tf ''' L2范数 sqrt(∑kXk^2) 无穷范数 abs(max(Xk)) L1范数 sum(abs(Xk)) ''' a = tf.ones([2,2]) print(tf.norm(a)) # tf.norm算的是L2范数 #等价于 print 阅读全文
posted @ 2021-03-12 20:37 cyssmile 阅读(1211) 评论(0) 推荐(0) 编辑