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.

FasterRCNNInitArgs.cs 600 B

6 years ago
123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Models.ObjectDetection
  5. {
  6. public class FasterRCNNInitArgs
  7. {
  8. public bool is_training { get; set; }
  9. public int num_classes { get; set; }
  10. public Action image_resizer_fn { get; set; }
  11. public Action feature_extractor { get; set; }
  12. public int number_of_stage { get; set; }
  13. public object first_stage_anchor_generator { get; set; }
  14. public object first_stage_target_assigner { get; set; }
  15. public int first_stage_atrous_rate { get; set; }
  16. }
  17. }