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.

RMSprop.cs 619 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Tensorflow.Keras
  6. {
  7. public class RMSprop : Optimizer
  8. {
  9. public RMSprop(float lr= 0.01f, float rho = 0f, float? epsilon = null, float decay = 0) : base(null)
  10. {
  11. throw new NotImplementedException();
  12. }
  13. public override Tensor[] get_updates(Tensor loss, variables @params)
  14. {
  15. throw new NotImplementedException();
  16. }
  17. public override Hashtable get_config()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. }
  22. }