Skip to content

Commit b3f7b96

Browse files
committed
[FEAT] *: add global methods to newest funcs
1 parent f70acf8 commit b3f7b96

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

Kinho/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from .convNeural import ConvNeural
22
from .neural import Neural
33

4+
from .tensor import Tensor
5+
46
from .helper import *
57

68
__author__ = 'Kinhosz'

Kinho/lib/convLayer.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@
33
class ConvLayer(object):
44
def __init__(self, tensor: Tensor) -> None:
55
pass
6+
7+
def send(self, in_data):
8+
pass
9+
10+
def learn(self, gradients):
11+
pass

0 commit comments

Comments
 (0)