Özel kayıp fonksiyonları

Python ile Finans için Machine Learning

Nathan George

Data Science Professor

yön uyuşmazlığı

Python ile Finans için Machine Learning

Yön cezalı MSE

Tahmin ve hedefin yönü uyuşursa:

  • $ \sum(y - \hat{y})^2$

Uyuşmazsa:

  • $\sum (y - \hat{y})^2 * \text{penalty} $
Python ile Finans için Machine Learning

Özel kayıp fonksiyonlarını uygulama

import tensorflow as tf
Python ile Finans için Machine Learning

Fonksiyon oluşturma

import tensorflow as tf

# create loss function def mean_squared_error(y_true, y_pred):
Python ile Finans için Machine Learning

Ortalama karesel hata kaybı

import tensorflow as tf

# create loss function
def mean_squared_error(y_true, y_pred):

loss = tf.square(y_true - y_pred) return tf.reduce_mean(loss, axis=-1)
Python ile Finans için Machine Learning

Özel kaybı keras'a ekleme

import tensorflow as tf

# create loss function
def mean_squared_error(y_true, y_pred):
    loss = tf.square(y_true - y_pred)
    return tf.reduce_mean(loss, axis=-1)

# enable use of loss with keras import keras.losses keras.losses.mean_squared_error = mean_squared_error
# fit the model with our mse loss function
model.compile(optimizer='adam', loss=mean_squared_error)
history = model.fit(scaled_train_features, train_targets, epochs=50)
Python ile Finans için Machine Learning

Doğru yönü kontrol etme

tf.less(y_true * y_pred, 0)

Doğru yön:

  • neg * neg = pos
  • pos * pos = pos

Yanlış yön:

  • neg * pos = neg
  • pos * neg = neg
Python ile Finans için Machine Learning

tf.where() kullanma

# create loss function
def sign_penalty(y_true, y_pred):
    penalty = 10.
    loss = tf.where(tf.less(y_true * y_pred, 0), 
                    penalty * tf.square(y_true - y_pred), 
                    tf.square(y_true - y_pred))
Python ile Finans için Machine Learning

Hepsini birleştirme

# create loss function
def sign_penalty(y_true, y_pred):
    penalty = 100.
    loss = tf.where(tf.less(y_true * y_pred, 0),
                    penalty * tf.square(y_true - y_pred), 
                    tf.square(y_true - y_pred))

    return tf.reduce_mean(loss, axis=-1)

# enable use of loss with keras keras.losses.sign_penalty = sign_penalty
Python ile Finans için Machine Learning

Özel kaybı kullanma

# create the model
model = Sequential()
model.add(Dense(50,
                input_dim=scaled_train_features.shape[1],
                activation='relu'))
model.add(Dense(10, activation='relu'))
model.add(Dense(1, activation='linear'))
# fit the model with our custom 'sign_penalty' loss function
model.compile(optimizer='adam', loss=sign_penalty)
history = model.fit(scaled_train_features, train_targets, epochs=50)
Python ile Finans için Machine Learning

Papyon şekli

train_preds = model.predict(scaled_train_features)
# scatter the predictions vs actual
plt.scatter(train_preds, train_targets)
plt.xlabel('predictions')
plt.ylabel('actual')
plt.show()

papyon grafiği

Python ile Finans için Machine Learning

Kendi kayıp fonksiyonunu oluştur!

Python ile Finans için Machine Learning

Preparing Video For Download...