|
12345678910111213141516171819202122232425 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Text;
-
- namespace Tensorflow.Keras
- {
- public class SGD : Optimizer
- {
- public SGD(float lr= 0.01f, float momentum= 0, float decay= 0, bool nesterov= false) : base(null)
- {
- throw new NotImplementedException();
- }
-
- public override Tensor[] get_updates(Tensor loss, variables @params)
- {
- throw new NotImplementedException();
- }
-
- public override Hashtable get_config()
- {
- throw new NotImplementedException();
- }
- }
- }
|