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.

Precision.cs 1.1 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 Precision : Metric
  8. {
  9. public Precision(float? thresholds = null, int? top_k = null, int? class_id = null, string name = null, string dtype = null) : base(name, dtype)
  10. {
  11. throw new NotImplementedException();
  12. }
  13. public Precision(float[] thresholds = null, int? top_k = null, int? class_id = null, string name = null, string dtype = null) : base(name, dtype)
  14. {
  15. throw new NotImplementedException();
  16. }
  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. }