using System; using System.Collections.Generic; using System.Dynamic; using System.Text; namespace Tensorflow { public static partial class Binding { public static tensorflow tf { get; } = New(); /// /// Alias to null, similar to python's None. /// For TensorShape, please use Unknown /// public static readonly object None = null; /// /// Used for TensorShape None /// /// public static readonly int Unknown = -1; } }