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.

TrainAndEvalDict.cs 559 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Tensorflow.Estimators;
  5. namespace Tensorflow.Models.ObjectDetection
  6. {
  7. public class TrainAndEvalDict
  8. {
  9. public Estimator estimator { get; set; }
  10. public Action train_input_fn { get; set; }
  11. public Action[] eval_input_fns { get; set; }
  12. public string[] eval_input_names { get; set; }
  13. public Action eval_on_train_input_fn { get; set; }
  14. public Action predict_input_fn { get; set; }
  15. public int train_steps { get; set; }
  16. }
  17. }