using System; using System.IO; using Tensorflow.Keras.ArgsDefinition; using Tensorflow.Keras.Layers; using static Tensorflow.KerasApi; namespace Tensorflow.Keras { public partial class Preprocessing { /// /// Image resizing layer /// /// /// /// /// public Resizing Resizing(int height, int width, string interpolation = "bilinear") => new Resizing(new ResizingArgs { Height = height, Width = width, Interpolation = interpolation }); } }