Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheIndependentCode/Neural-Network
/ functions
Functions
31 in github.com/TheIndependentCode/Neural-Network
⨍
Functions
31
◇
Types & classes
8
↓ 4 callers
Function
predict
(network, input)
network.py:1
↓ 3 callers
Function
train
(network, loss, loss_prime, x_train, y_train, epochs = 1000, learning_rate = 0.01, verbose = True)
network.py:7
↓ 2 callers
Function
preprocess_data
(x, y, limit)
mnist_conv.py:12
↓ 2 callers
Function
preprocess_data
(x, y, limit)
mnist.py:11
↓ 1 callers
Method
__init__
(self)
activations.py:6
↓ 1 callers
Method
backward
(self, output_gradient, learning_rate)
dense.py:13
↓ 1 callers
Method
forward
(self, input)
dense.py:9
↓ 1 callers
Method
tanh
(x)
activations.py:7
Method
__init__
(self, input_shape, kernel_size, depth)
convolutional.py:6
Method
__init__
(self, input_shape, output_shape)
reshape.py:5
Method
__init__
(self, input_size, output_size)
dense.py:5
Method
__init__
(self)
activations.py:16
Method
__init__
(self)
layer.py:2
Method
__init__
(self, activation, activation_prime)
activation.py:5
Method
backward
(self, output_gradient, learning_rate)
convolutional.py:24
Method
backward
(self, output_gradient, learning_rate)
reshape.py:12
Method
backward
(self, output_gradient, learning_rate)
activations.py:32
Method
backward
(self, output_gradient, learning_rate)
layer.py:10
Method
backward
(self, output_gradient, learning_rate)
activation.py:13
Function
binary_cross_entropy
(y_true, y_pred)
losses.py:9
Function
binary_cross_entropy_prime
(y_true, y_pred)
losses.py:12
Method
forward
(self, input)
convolutional.py:16
Method
forward
(self, input)
reshape.py:9
Method
forward
(self, input)
activations.py:27
Method
forward
(self, input)
layer.py:6
Method
forward
(self, input)
activation.py:9
Function
mse
(y_true, y_pred)
losses.py:3
Function
mse_prime
(y_true, y_pred)
losses.py:6
Method
sigmoid
(x)
activations.py:17
Method
sigmoid_prime
(x)
activations.py:20
Method
tanh_prime
(x)
activations.py:10