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.

NamedEntityRecognition.cs 1.1 kB

6 years ago
6 years ago
6 years ago
6 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using Tensorflow;
  3. namespace TensorFlowNET.Examples
  4. {
  5. /// <summary>
  6. /// https://github.com/guillaumegenthial/tf_ner
  7. /// </summary>
  8. public class NamedEntityRecognition : IExample
  9. {
  10. public bool Enabled { get; set; } = false;
  11. public string Name => "NER";
  12. public bool IsImportingGraph { get; set; } = false;
  13. public void Train(Session sess)
  14. {
  15. throw new NotImplementedException();
  16. }
  17. public void PrepareData()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. public Graph ImportGraph()
  22. {
  23. throw new NotImplementedException();
  24. }
  25. public Graph BuildGraph()
  26. {
  27. throw new NotImplementedException();
  28. }
  29. public bool Run()
  30. {
  31. throw new NotImplementedException();
  32. }
  33. public void Predict(Session sess)
  34. {
  35. throw new NotImplementedException();
  36. }
  37. public void Test(Session sess)
  38. {
  39. throw new NotImplementedException();
  40. }
  41. }
  42. }