13 lines
138 B
Python
13 lines
138 B
Python
|
|
import numpy as np
|
|
|
|
class BackPropagationNetwork:
|
|
|
|
#
|
|
# Class Members
|
|
#
|
|
|
|
layerCount = 0
|
|
shape = None
|
|
weights = []
|