You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ILossFunc.cs 241 B

4 years ago
4 years ago
4 years ago
123456789
  1. namespace Tensorflow.Keras.Losses
  2. {
  3. public interface ILossFunc
  4. {
  5. public string Reduction { get; }
  6. public string Name { get; }
  7. Tensor Call(Tensor y_true, Tensor y_pred, Tensor sample_weight = null);
  8. }
  9. }