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.

ModelLoadSetting.cs 596 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using NumSharp;
  5. namespace Tensorflow.Hub
  6. {
  7. public class ModelLoadSetting
  8. {
  9. public string TrainDir { get; set; }
  10. public bool OneHot { get; set; }
  11. public Type DataType { get; set; } = typeof(float);
  12. public bool ReShape { get; set; }
  13. public int ValidationSize { get; set; } = 5000;
  14. public int? TrainSize { get; set; }
  15. public int? TestSize { get; set; }
  16. public string SourceUrl { get; set; }
  17. public bool ShowProgressInConsole { get; set; }
  18. }
  19. }