using System; using System.Collections.Generic; using System.Text; namespace Tensorflow.Models.ObjectDetection.MetaArchitectures { public class FasterRCNNMetaArch { public (Tensor, Tensor) preprocess(Tensor tensor) { throw new NotImplementedException(""); } } }