Orderbook Simulation
OrderbookSim is a C++ application simulating a financial market order book. It efficiently manages and matches buy and sell orders while calculating the Volume-Weighted Average Price (VWAP).
|
Defines the Neuron class for a neural network. More...
Go to the source code of this file.
Classes | |
class | Neuron |
Represents a single neuron within a neural network layer. More... | |
Typedefs | |
typedef std::vector< Neuron > | Layer |
Represents a layer of neurons in the neural network. More... | |
Defines the Neuron class for a neural network.
This file contains the Neuron class, which represents an individual neuron in a neural network. The Neuron class manages the neuron's value, gradients, weights, and provides methods for forward propagation, gradient calculation, and weight updates.
Represents a layer of neurons in the neural network.