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 690 B

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Tensorflow;
  5. using static Tensorflow.Python;
  6. namespace TensorFlowNET.Examples
  7. {
  8. /// <summary>
  9. /// https://github.com/guillaumegenthial/tf_ner
  10. /// </summary>
  11. public class NamedEntityRecognition : IExample
  12. {
  13. public int Priority => 100;
  14. public bool Enabled { get; set; } = false;
  15. public string Name => "NER";
  16. public bool ImportGraph { get; set; } = false;
  17. public bool Run()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. public void PrepareData()
  22. {
  23. throw new NotImplementedException();
  24. }
  25. }
  26. }