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).
Classes | Typedefs
Neuron.hpp File Reference

Defines the Neuron class for a neural network. More...

#include <vector>
#include <random>
#include "Connection.hpp"

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< NeuronLayer
 Represents a layer of neurons in the neural network. More...
 

Detailed Description

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.

Typedef Documentation

◆ Layer

Represents a layer of neurons in the neural network.