We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a14e2c9 commit e02c69eCopy full SHA for e02c69e
1 file changed
src/ConvNetSharp.Flow/Net.cs
@@ -35,6 +35,12 @@ public T Backward(Volume<T> y)
35
throw new NotImplementedException();
36
}
37
38
+ /// <summary>
39
+ /// Creates a dictionary containing input and evaluates the output Op
40
+ /// </summary>
41
+ /// <param name="input">input</param>
42
+ /// <param name="isTraining">isTraining has no use here.</param>
43
+ /// <returns></returns>
44
public Volume<T> Forward(Volume<T> input, bool isTraining = false)
45
{
46
this._dico["input"] = input;
0 commit comments