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.

MeanMetricWrapper.cs 606 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Tensorflow.Keras.Metrics
  6. {
  7. public class MeanMetricWrapper : Mean
  8. {
  9. public MeanMetricWrapper(Func<Tensor, Tensor, Tensor> fn, string name, string dtype = null) : base(name, dtype)
  10. {
  11. throw new NotImplementedException();
  12. }
  13. public override Tensor result()
  14. {
  15. throw new NotImplementedException();
  16. }
  17. public override Hashtable get_config()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. }
  22. }