We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f70acf8 commit b3f7b96Copy full SHA for b3f7b96
2 files changed
Kinho/__init__.py
@@ -1,6 +1,8 @@
1
from .convNeural import ConvNeural
2
from .neural import Neural
3
4
+from .tensor import Tensor
5
+
6
from .helper import *
7
8
__author__ = 'Kinhosz'
Kinho/lib/convLayer.py
@@ -3,3 +3,9 @@
class ConvLayer(object):
def __init__(self, tensor: Tensor) -> None:
pass
+ def send(self, in_data):
+ pass
9
10
+ def learn(self, gradients):
11
0 commit comments