22
Python'da Softmax işlevi nasıl uygulanır
Gönderen Udacity en derin öğrenme sınıfının , Y_I ait SoftMax bütün Y vektörü üstel toplamına bölünmesiyle üstel basitçe: S(y_i)Softmax fonksiyonu nerede y_ive eüstel ve jhayır. girdi vektörü Y'deki sütunlar. Aşağıdakileri denedim: import numpy as np def softmax(x): """Compute softmax values for each sets of scores in x.""" e_x = np.exp(x …