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.

SensitivitySpecificityBase.cs 747 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Keras.Metrics
  5. {
  6. public class SensitivitySpecificityBase : Metric
  7. {
  8. public SensitivitySpecificityBase(float value, int num_thresholds= 200, string name = null, string dtype = null) : base(name, dtype)
  9. {
  10. throw new NotImplementedException();
  11. }
  12. public override Tensor result()
  13. {
  14. throw new NotImplementedException();
  15. }
  16. public override void update_state(Args args, KwArgs kwargs)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. public override void reset_states()
  21. {
  22. throw new NotImplementedException();
  23. }
  24. }
  25. }