[ Tensorflow ] AUC 구하기
광고 한 번씩 눌러주세요. 블로그 운영에 큰 힘이 됩니다 :) import tensorflow as tf import numpy as np a= np.random.uniform(size=(10,2)) prob = a / np.expand_dims(np.sum(a,axis =1 ),axis =1) prob target = np.random.randint(low=0, high =2 , size=10) target = np.argmax(prob , axis = 1) probs = tf.constant(prob) labels = tf.constant(target) proba = tf.slice(probs,[0,1],[-1,1]) auc_value , update_auc = tf.metrics.auc(tf.res..
2020.02.21