Nhập môn TensorFlow bằng Python
Isaiah Hull
Visiting Associate Professor of Finance, BI Norwegian Business School




Bộ tối ưu Stochastic Gradient Descent (SGD)
tf.keras.optimizers.SGD()learning_rateĐơn giản, dễ hiểu
Bộ tối ưu RMSprop (Root Mean Squared propagation)
tf.keras.optimizers.RMSprop()learning_ratemomentumdecayCho phép đà (momentum) tăng và giảm
Bộ tối ưu Adam (Adaptive Moment)
tf.keras.optimizers.Adam()learning_ratebeta1Hoạt động tốt với tham số mặc định
import tensorflow as tf
# Define the model function
def model(bias, weights, features = borrower_features):
product = tf.matmul(features, weights)
return tf.keras.activations.sigmoid(product+bias)
# Compute the predicted values and loss
def loss_function(bias, weights, targets = default, features = borrower_features):
predictions = model(bias, weights)
return tf.keras.losses.binary_crossentropy(targets, predictions)
# Minimize the loss function with RMS propagation
opt = tf.keras.optimizers.RMSprop(learning_rate=0.01, momentum=0.9)
opt.minimize(lambda: loss_function(bias, weights), var_list=[bias, weights])
Nhập môn TensorFlow bằng Python