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.

Exploring.cs 504 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using static Tensorflow.Binding;
  5. using static Tensorflow.TextApi;
  6. namespace Tensorflow
  7. {
  8. public class Exploring
  9. {
  10. public void Run()
  11. {
  12. var docs = tf.constant(new[] { "Everything not saved will be lost." });
  13. var tokenizer = text.WhitespaceTokenizer();
  14. text.wordshape(docs, Text.WordShape.HAS_TITLE_CASE);
  15. throw new NotImplementedException("");
  16. }
  17. }
  18. }