Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
150 views
in Technique[技术] by (71.8m points)

python - Adding a new term to a built-in loss function in keras

I am working with the below loss function to train the neural network that I am working with:

loss = {'time_prediction': keras.losses.mean_squared_error,
            'decoded_mean': keras.losses.mean_squared_error}

Now, I need to update my loss function by adding a new term to the previous loss function which is not a built-in term in keras. How can I add this new custom function to the previous loss function? I wrote the new term as a function below:

def new_term_loss(X_alpha, X_train):
  return (1/np.size(X_alpha)) * np.sum((X_alpha - X_train)>0)
question from:https://stackoverflow.com/questions/65922117/adding-a-new-term-to-a-built-in-loss-function-in-keras

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...