Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Sentdex/NNfSiX
/ functions
Functions
235 in github.com/Sentdex/NNfSiX
⨍
Functions
235
◇
Types & classes
56
↓ 1 callers
Function
rand_range
Generate a random floating point number from min to max
C/p005-ReLU-Activation.c:79
↓ 1 callers
Function
rand_range
Generate a random floating point number from min to max
C/p006-Softmax-Activation.c:80
↓ 1 callers
Function
rand_range
generate a random floating point number from min to max
C/p004-Batches-Layers.c:66
↓ 1 callers
Method
randn
Implementation of randn function from numpy, uses the built in gaussian distribution from the java random class. @param rows How many rows the array
Java/P005ReLUActivationAndSpiralDataset.java:89
↓ 1 callers
Function
random
C++/p004-Layers-and-Object.cpp:16
↓ 1 callers
Function
softmax
(input: Array2<f64>)
Rust/p006-Softmax-Activation.rs:48
↓ 1 callers
Function
spiral_data
(points, classes)
Javascript/p005-ReLU-Activation.js:10
↓ 1 callers
Function
spiral_data
(points: usize, classes: usize)
Rust/p005-ReLU-Activation.rs:45
↓ 1 callers
Function
spiral_data
(points: usize, classes: usize)
Rust/p006-Softmax-Activation.rs:67
↓ 1 callers
Function
spiral_data
C++/p005-ReLU-Activation.cpp:123
↓ 1 callers
Function
spiral_data
@brief Generate a randome range in a uniform distribution. * @Note Credit to shreeviknesh (#106) saved alot of time. * * @param[in] points Num
C/p006-Softmax-Activation.c:195
↓ 1 callers
Method
spiral_data
define dataset
C#/p005-ReLU-Activation.cs:53
↓ 1 callers
Function
uniform_distribution
@brief Generate a randome range in a uniform distribution. * @Note Code was lifted from here https://stackoverflow.com/questions/11641629/generating-
C/p005-ReLU-Activation.c:179
↓ 1 callers
Function
uniform_distribution
@brief Generate a randome range in a uniform distribution. * @Note Code was lifted from here https://stackoverflow.com/questions/11641629/generating-
C/p006-Softmax-Activation.c:180
↓ 1 callers
Function
vector_flip_sign
C++/p006-Softmax-Activation.cpp:246
↓ 1 callers
Function
vector_mean
C++/p006-Softmax-Activation.cpp:238
Method
ActivationReLU
C+nnfs c++ part 6.cpp:642
Method
ActivationReLU
C++/p006-Softmax-Activation.cpp:734
Method
ActivationSoftmax
C+nnfs c++ part 6.cpp:653
Method
ActivationSoftmax
C++/p006-Softmax-Activation.cpp:745
Method
DisplayOutput
Method to Display Jagged Array as Matrix in Console
C#/p004-Layers-and-Objects.cs:76
Method
Forward
Forward function
C#/p005-ReLU-Activation.cs:119
Method
LayerDense
C+nnfs c++ part 6.cpp:593
Method
LayerDense
C++/p006-Softmax-Activation.cpp:686
Method
Layer_Dense
constructor
C#/p005-ReLU-Activation.cs:86
Method
Layer_Dense
(int n_inputs, int n_neurons)
C#/p004-Layers-and-Objects.cs:15
Method
Layer_Dense
Constructor for new densely connected layer. @param n_inputs Number of inputs coming into layer. @param n_neurons Number of neurons in layer.
Java/P004LayersAndObjects.java:43
Method
Layer_Dense
Constructor for new densely connected layer. @param n_inputs Number of inputs coming into layer. @param n_neurons Number of neurons in layer.
Java/P005ReLUActivationAndSpiralDataset.java:68
Method
Main
(string[] args)
C#/p001-Basic-Neuron-3-inputs.cs:10
Method
Main
(string[] args)
C#/p005-ReLU-Activation.cs:20
Method
Main
(string[] args)
C#/p002-Basic-Neuron-Layer.cs:10
Method
Main
(string[] args)
C#/p003-Dot-Product.cs:11
Method
Main
(string[] args)
C#/p004-Layers-and-Objects.cs:52
Function
NewSpiralData
NewSpiralData generates spiral data. see: https://cs231n.github.io/neural-networks-case-study/
Go/p005-ReLU-Activation.go:125
Method
Random
C+nnfs c++ part 6.cpp:124
Method
Random
To make generate the same set of random numbers (for debugging) comment out: std::mt19937 randomEngine(randomSeed()); uncomment: std::mt19937 randomEn
C+nnfs c++ part 6.cpp:522
Method
Random
C++/p006-Softmax-Activation.cpp:139
Method
Range
C+nnfs c++ part 6.cpp:538
Method
Range
C++/p006-Softmax-Activation.cpp:631
Method
Vector
C+nnfs c++ part 6.cpp:563
Method
Vector
C++/p006-Softmax-Activation.cpp:656
Method
__init__
(self, n_inputs, n_neurons)
Python/p008-Categorical-Cross-Entropy-Loss-applied.py:14
Method
__init__
(self, n_inputs, n_neurons)
Python/p005-ReLU-Activation.py:11
Method
__init__
(self, n_inputs, n_neurons)
Python/p004-Layers-and-Object.py:15
Method
__init__
(self, n_inputs, n_neurons)
Python/p006-Softmax-Activation.py:10
Function
actiavtion1
@brief Callback to apply a activation function to the output of a node. * * @param[in] output Pointer to the dot product output. */
C/p005-ReLU-Activation.c:167
Function
actiavtion1
@brief Callback to apply a activation function to the output of a node. * * @param[in] output Pointer to the dot product output. */
C/p006-Softmax-Activation.c:168
Function
activation_sigmoid
sigmoid activation function
C/p005-ReLU-Activation.c:149
Function
activation_sigmoid
sigmoid activation function
C/p006-Softmax-Activation.c:150
Method
constructor
(n_inputs, n_neurons)
Javascript/p004-Layers-and-Object.js:14
Method
constructor
(n_inputs, n_neurons)
Javascript/p005-ReLU-Activation.js:46
Method
constructor
()
Javascript/p005-ReLU-Activation.js:60
Method
dense_layer
constructor
C++/p004-Layers-and-Object.cpp:67
Method
dense_layer
constructor
C++/p005-ReLU-Activation.cpp:103
Method
fill
fill matrix with num
C+nnfs c++ part 6.cpp:82
Method
fill
C++/p006-Softmax-Activation.cpp:92
Method
forward
(inputs)
Javascript/p005-ReLU-Activation.js:62
Method
forward
(self, inputs)
Python/p008-Categorical-Cross-Entropy-Loss-applied.py:22
Method
forward
(self, inputs)
Python/p008-Categorical-Cross-Entropy-Loss-applied.py:26
Method
forward
(self, y_pred, y_true)
Python/p008-Categorical-Cross-Entropy-Loss-applied.py:38
Method
forward
(self, inputs)
Python/p005-ReLU-Activation.py:19
Method
forward
(self, inputs)
Python/p006-Softmax-Activation.py:18
Method
forward
(self, inputs)
Python/p006-Softmax-Activation.py:22
Method
initialize
( n_inputs, n_neurons)
Ruby/p004_Layers_And_Object.rb:17
Function
main
C+nnfs c++ part 6.cpp:675
Function
main
()
Rust/p005-ReLU-Activation.rs:6
Function
main
()
Rust/p006-Softmax-Activation.rs:7
Function
main
()
Rust/p004-Layers-and-Object.rs:9
Function
main
()
Rust/p001-Basic-Neuron-3-inputs.rs:6
Function
main
()
Rust/p002-Basic-Neuron-Layer.rs:4
Function
main
()
Rust/p003-Dot-Product.rs:6
Function
main
C++/p001-Basic-Neuron-3-inputs.cpp:9
Function
main
C++/p004-Layers-and-Object.cpp:86
Function
main
C++/p002-Basic-Neuron-Layer.cpp:9
Function
main
C++/p003-Dot-Product.cpp:28
Function
main
C++/p006-Softmax-Activation.cpp:767
Function
main
C++/p005-ReLU-Activation.cpp:138
Function
main
()
Go/p003-Dot-Product.go:8
Function
main
()
Go/p002-Basic-Neuron-Layer.go:9
Function
main
()
Go/p004-Layers-and-Object.go:43
Function
main
()
Go/P001-Basic-Neuron-3-inputs.go:9
Function
main
()
Go/p005-ReLU-Activation.go:73
Function
main
Kotlin/P003DotProduct.kt:7
Function
main
* Creates a simple layer of neurons, with 4 inputs. * Associated YT NNFS tutorial: https://www.youtube.com/watch?v=lGLto9Xd7bU */
Kotlin/P002BasicNeuronLayer.kt:5
Function
main
* Creates a basic neuron with 3 inputs. * Associated YT NNFS tutorial: https://www.youtube.com/watch?v=Wo5dMEP_BbI */
Kotlin/P001BasicNeuron3Inputs.kt:5
Function
main
C/p005-ReLU-Activation.c:250
Function
main
C/p001-Basic-Neuron-3-inputs.c:8
Function
main
C/p003-Dot-Product.c:49
Function
main
C/p006-Softmax-Activation.c:297
Function
main
C/p002-Basic-Neuron-Layer.c:8
Function
main
C/p004-Batches-Layers.c:135
Method
main
(String[] args)
Java/P002BasicNeuronLayer.java:10
Method
main
(String[] args)
Java/P001BasicNeuron3Inputs.java:8
Method
main
Main method, establishes data to be used, creates two layers and runs data through both layers to get output.
Java/P004LayersAndObjects.java:14
Method
main
(String[] args)
Java/P003DotProduct.java:10
Method
main
Main method, establishes data to be used, creates two layers and runs data through both layers to get output.
Java/P005ReLUActivationAndSpiralDataset.java:20
Function
matrixCapMax
caps max value in matrix at value
C+nnfs c++ part 6.cpp:298
Function
matrixGetMax
returns biggest value from whole of the matrix
C+nnfs c++ part 6.cpp:351
Function
matrixMinus
minus value from all the elements
C+nnfs c++ part 6.cpp:379
Function
matrix_cap_max
caps max value in matrix at value
C++/p006-Softmax-Activation.cpp:327
← previous
next →
101–200 of 235, ranked by callers