Skip to content

Commit e02c69e

Browse files
committed
comment
1 parent a14e2c9 commit e02c69e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/ConvNetSharp.Flow/Net.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ public T Backward(Volume<T> y)
3535
throw new NotImplementedException();
3636
}
3737

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>
3844
public Volume<T> Forward(Volume<T> input, bool isTraining = false)
3945
{
4046
this._dico["input"] = input;

0 commit comments

Comments
 (0)