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.

CallbackParams.cs 350 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Tensorflow.Keras.Engine;
  5. namespace Tensorflow.Keras.Callbacks
  6. {
  7. public class CallbackParams
  8. {
  9. public IModel Model { get; set; }
  10. public int Verbose { get; set; }
  11. public int Epochs { get; set; }
  12. public long Steps { get; set; }
  13. }
  14. }