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.

BoxPredictorBuilder.cs 378 B

6 years ago
123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Models.ObjectDetection
  5. {
  6. public class BoxPredictorBuilder
  7. {
  8. ConvolutionalBoxPredictor _first_stage_box_predictor;
  9. public ConvolutionalBoxPredictor build_convolutional_box_predictor()
  10. {
  11. throw new NotImplementedException("");
  12. }
  13. }
  14. }