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.

Binding.cs 588 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Dynamic;
  4. using System.Text;
  5. namespace Tensorflow
  6. {
  7. public static partial class Binding
  8. {
  9. public static tensorflow tf { get; } = New<tensorflow>();
  10. /// <summary>
  11. /// Alias to null, similar to python's None.
  12. /// For TensorShape, please use Unknown
  13. /// </summary>
  14. public static readonly object None = null;
  15. /// <summary>
  16. /// Used for TensorShape None
  17. /// </summary>
  18. ///
  19. public static readonly int Unknown = -1;
  20. }
  21. }