parent
3761927923
commit
8d955c5e7a
Binary file not shown.
@ -1 +1,17 @@ |
|||||||
#!/usr/bin/env python |
#!/usr/bin/env python |
||||||
|
|
||||||
|
from lib.func import * |
||||||
|
|
||||||
|
class rgb(object): |
||||||
|
def __init__(self): |
||||||
|
self.weights = 1 |
||||||
|
|
||||||
|
def think(self, inputMatrix): |
||||||
|
print("thonk: " + str( sigmoid(self.weights) )) |
||||||
|
|
||||||
|
def init(): # init func |
||||||
|
bot = rgb() |
||||||
|
|
||||||
|
bot.think(1) |
||||||
|
|
||||||
|
init() |
||||||
|
Loading…
Reference in new issue