您好,登錄后才能下訂單哦!
小編給大家分享一下Keras loss函數有什么用,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
我就廢話不多說了,大家還是直接看代碼吧~
''' Created on 2018-4-16 ''' def compile( self, optimizer, #優化器 loss, #損失函數,可以為已經定義好的loss函數名稱,也可以為自己寫的loss函數 metrics=None, # sample_weight_mode=None, #如果你需要按時間步為樣本賦權(2D權矩陣),將該值設為“temporal”。默認為“None”,代表按樣本賦權(1D權),和fit中sample_weight在賦值樣本權重中配合使用 weighted_metrics=None, target_tensors=None, **kwargs #這里的設定的參數可以和后端交互。 ) 實質調用的是Keras\engine\training.py 中的class Model中的def compile 一般使用model.compile(loss='categorical_crossentropy',optimizer='sgd',metrics=['accuracy']) # keras所有定義好的損失函數loss: # keras\losses.py # 有些loss函數可以使用簡稱: # mse = MSE = mean_squared_error # mae = MAE = mean_absolute_error # mape = MAPE = mean_absolute_percentage_error # msle = MSLE = mean_squared_logarithmic_error # kld = KLD = kullback_leibler_divergence # cosine = cosine_proximity # 使用到的數學方法: # mean:求均值 # sum:求和 # square:平方 # abs:絕對值 # clip:[裁剪替換](https://blog.csdn.net/qq1483661204/article/details) # epsilon:1e-7 # log:以e為底 # maximum(x,y):x與 y逐位比較取其大者 # reduce_sum(x,axis):沿著某個維度求和 # l2_normalize:l2正則化 # softplus:softplus函數 # # import cntk as C # 1.mean_squared_error: # return K.mean(K.square(y_pred - y_true), axis=-1) # 2.mean_absolute_error: # return K.mean(K.abs(y_pred - y_true), axis=-1) # 3.mean_absolute_percentage_error: # diff = K.abs((y_true - y_pred) / K.clip(K.abs(y_true),K.epsilon(),None)) # return 100. * K.mean(diff, axis=-1) # 4.mean_squared_logarithmic_error: # first_log = K.log(K.clip(y_pred, K.epsilon(), None) + 1.) # second_log = K.log(K.clip(y_true, K.epsilon(), None) + 1.) # return K.mean(K.square(first_log - second_log), axis=-1) # 5.squared_hinge: # return K.mean(K.square(K.maximum(1. - y_true * y_pred, 0.)), axis=-1) # 6.hinge(SVM損失函數): # return K.mean(K.maximum(1. - y_true * y_pred, 0.), axis=-1) # 7.categorical_hinge: # pos = K.sum(y_true * y_pred, axis=-1) # neg = K.max((1. - y_true) * y_pred, axis=-1) # return K.maximum(0., neg - pos + 1.) # 8.logcosh: # def _logcosh(x): # return x + K.softplus(-2. * x) - K.log(2.) # return K.mean(_logcosh(y_pred - y_true), axis=-1) # 9.categorical_crossentropy: # output /= C.reduce_sum(output, axis=-1) # output = C.clip(output, epsilon(), 1.0 - epsilon()) # return -sum(target * C.log(output), axis=-1) # 10.sparse_categorical_crossentropy: # target = C.one_hot(target, output.shape[-1]) # target = C.reshape(target, output.shape) # return categorical_crossentropy(target, output, from_logits) # 11.binary_crossentropy: # return K.mean(K.binary_crossentropy(y_true, y_pred), axis=-1) # 12.kullback_leibler_divergence: # y_true = K.clip(y_true, K.epsilon(), 1) # y_pred = K.clip(y_pred, K.epsilon(), 1) # return K.sum(y_true * K.log(y_true / y_pred), axis=-1) # 13.poisson: # return K.mean(y_pred - y_true * K.log(y_pred + K.epsilon()), axis=-1) # 14.cosine_proximity: # y_true = K.l2_normalize(y_true, axis=-1) # y_pred = K.l2_normalize(y_pred, axis=-1) # return -K.sum(y_true * y_pred, axis=-1)
補充知識:一文總結Keras的loss函數和metrics函數
Loss函數
定義:
keras.losses.mean_squared_error(y_true, y_pred)
用法很簡單,就是計算均方誤差平均值,例如
loss_fn = keras.losses.mean_squared_error a1 = tf.constant([1,1,1,1]) a2 = tf.constant([2,2,2,2]) loss_fn(a1,a2) <tf.Tensor: id=718367, shape=(), dtype=int32, numpy=1>
Metrics函數
Metrics函數也用于計算誤差,但是功能比Loss函數要復雜。
定義
tf.keras.metrics.Mean( name='mean', dtype=None )
這個定義過于簡單,舉例說明
mean_loss([1, 3, 5, 7]) mean_loss([1, 3, 5, 7]) mean_loss([1, 1, 1, 1]) mean_loss([2,2])
輸出結果
<tf.Tensor: id=718929, shape=(), dtype=float32, numpy=2.857143>
這個結果等價于
np.mean([1, 3, 5, 7, 1, 3, 5, 7, 1, 1, 1, 1, 2, 2])
這是因為Metrics函數是狀態函數,在神經網絡訓練過程中會持續不斷地更新狀態,是有記憶的。因為Metrics函數還帶有下面幾個Methods
reset_states() Resets all of the metric state variables. This function is called between epochs/steps, when a metric is evaluated during training. result() Computes and returns the metric value tensor. Result computation is an idempotent operation that simply calculates the metric value using the state variables update_state( values, sample_weight=None ) Accumulates statistics for computing the reduction metric.
另外注意,Loss函數和Metrics函數的調用形式,
loss_fn = keras.losses.mean_squared_error mean_loss = keras.metrics.Mean()
mean_loss(1)等價于keras.metrics.Mean()(1),而不是keras.metrics.Mean(1),這個從keras.metrics.Mean函數的定義可以看出。
但是必須先令生成一個實例mean_loss=keras.metrics.Mean(),而不能直接使用keras.metrics.Mean()本身。
看完了這篇文章,相信你對Keras loss函數有什么用有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。