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.

FasterRCNNMetaArch.cs 314 B

6 years ago
1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Models.ObjectDetection.MetaArchitectures
  5. {
  6. public class FasterRCNNMetaArch
  7. {
  8. public (Tensor, Tensor) preprocess(Tensor tensor)
  9. {
  10. throw new NotImplementedException("");
  11. }
  12. }
  13. }