|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Tensorflow;
- using static Tensorflow.Python;
-
- namespace TensorFlowNET.Examples
- {
- /// <summary>
- /// https://github.com/guillaumegenthial/tf_ner
- /// </summary>
- public class NamedEntityRecognition : IExample
- {
- public bool Enabled { get; set; } = false;
- public string Name => "NER";
- public bool IsImportingGraph { get; set; } = false;
-
-
- public bool Train()
- {
- throw new NotImplementedException();
- }
-
- public void PrepareData()
- {
- throw new NotImplementedException();
- }
-
- public Graph ImportGraph()
- {
- throw new NotImplementedException();
- }
-
- public Graph BuildGraph()
- {
- throw new NotImplementedException();
- }
-
- public bool Run()
- {
- throw new NotImplementedException();
- }
-
- public bool Predict()
- {
- throw new NotImplementedException();
- }
- }
- }
|