-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0b71998
commit 9994040
Showing
9 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import sys | ||
sys.path.append("..") | ||
from nn.function.relu import ReLu | ||
import nn | ||
from nn.Linear import Linear | ||
from Tensor import Tensor | ||
from nn.Lossfunction import MSELoss | ||
from nn.optimizer.optimizer import SGD | ||
import numpy | ||
from matplotlib import pyplot | ||
|
||
class model(nn.Module.Module): | ||
def __init__(self): | ||
self.conv1 = |