PT21-22-Reseau-Neurones/test.py
2021-12-09 18:50:57 +01:00

14 lines
273 B
Python

import numpy as np
from sobek.network import network
test = network(16, 16, 8, 4)
"""
for y in test.weights:
print(y, end="\n\n")
for y in test.biases:
print(y, end="\n\n")"""
#print(network.__reLu(8))
print(test.process(np.random.default_rng(42).random((16))))