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.

AUC.cs 1.2 kB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 AUC : Metric
  8. {
  9. public AUC(int num_thresholds= 200, string curve= "ROC", string summation_method= "interpolation",
  10. string name= null, string dtype= null, float thresholds= 0.5f,
  11. bool multi_label= false, Tensor label_weights= null) : base(name, dtype)
  12. {
  13. throw new NotImplementedException();
  14. }
  15. private void _build(TensorShape shape) => throw new NotImplementedException();
  16. public Tensor interpolate_pr_auc() => throw new NotImplementedException();
  17. public override Tensor result()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. public override void update_state(Args args, KwArgs kwargs)
  22. {
  23. throw new NotImplementedException();
  24. }
  25. public override void reset_states()
  26. {
  27. throw new NotImplementedException();
  28. }
  29. public override Hashtable get_config()
  30. {
  31. throw new NotImplementedException();
  32. }
  33. }
  34. }