-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make improvements of the arrow shape render
- Loading branch information
1 parent
eb75022
commit dd43f09
Showing
13 changed files
with
420 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,62 @@ | ||
#Region "Microsoft.VisualBasic::5b68e0afbe63fac08c109499e401e6b1, Data_science\MachineLearning\DeepLearning\RNN\net\interfaces\Trainable.vb" | ||
|
||
' Author: | ||
' | ||
' asuka ([email protected]) | ||
' xie ([email protected]) | ||
' xieguigang ([email protected]) | ||
' | ||
' Copyright (c) 2018 GPL3 Licensed | ||
' | ||
' | ||
' GNU GENERAL PUBLIC LICENSE (GPL3) | ||
' | ||
' | ||
' This program is free software: you can redistribute it and/or modify | ||
' it under the terms of the GNU General Public License as published by | ||
' the Free Software Foundation, either version 3 of the License, or | ||
' (at your option) any later version. | ||
' | ||
' This program is distributed in the hope that it will be useful, | ||
' but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
' GNU General Public License for more details. | ||
' | ||
' You should have received a copy of the GNU General Public License | ||
' along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
||
|
||
' /********************************************************************************/ | ||
|
||
' Summaries: | ||
|
||
|
||
' Code Statistics: | ||
|
||
' Total Lines: 17 | ||
' Code Lines: 5 (29.41%) | ||
' Comment Lines: 9 (52.94%) | ||
' - Xml Docs: 0.00% | ||
' | ||
' Blank Lines: 3 (17.65%) | ||
' File Size: 487 B | ||
|
||
|
||
' Interface Trainable | ||
' | ||
' Function: forwardBackward | ||
' | ||
' | ||
' /********************************************************************************/ | ||
' Author: | ||
' | ||
' asuka ([email protected]) | ||
' xie ([email protected]) | ||
' xieguigang ([email protected]) | ||
' | ||
' Copyright (c) 2018 GPL3 Licensed | ||
' | ||
' | ||
' GNU GENERAL PUBLIC LICENSE (GPL3) | ||
' | ||
' | ||
' This program is free software: you can redistribute it and/or modify | ||
' it under the terms of the GNU General Public License as published by | ||
' the Free Software Foundation, either version 3 of the License, or | ||
' (at your option) any later version. | ||
' | ||
' This program is distributed in the hope that it will be useful, | ||
' but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
' GNU General Public License for more details. | ||
' | ||
' You should have received a copy of the GNU General Public License | ||
' along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
||
|
||
' /********************************************************************************/ | ||
|
||
' Summaries: | ||
|
||
|
||
' Code Statistics: | ||
|
||
' Total Lines: 17 | ||
' Code Lines: 5 (29.41%) | ||
' Comment Lines: 9 (52.94%) | ||
' - Xml Docs: 0.00% | ||
' | ||
' Blank Lines: 3 (17.65%) | ||
' File Size: 487 B | ||
|
||
|
||
' Interface Trainable | ||
' | ||
' Function: forwardBackward | ||
' | ||
' | ||
' /********************************************************************************/ | ||
|
||
#End Region | ||
|
||
Namespace RNN | ||
' Trainable neural network. | ||
|
||
''' <summary> | ||
''' Trainable neural network. | ||
''' </summary> | ||
Public Interface Trainable | ||
|
||
' | ||
|
@@ -65,7 +68,7 @@ Namespace RNN | |
' Returns the cross-entropy loss. | ||
' | ||
Function forwardBackward(ix As Integer(), iy As Integer()) As Double | ||
End Interface | ||
|
||
End Interface | ||
|
||
End Namespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.