• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Hyperparameter tuning neural networks on financial data

Joined
9/13/23
Messages
3
Points
3
Fellow neural network enthusiasts

What’s the difference between ReLU and Leaky ReLU? Between binary cross-entropy, Huber loss and Poisson NLL? Between a learning rate of 0.01 and 0.001?

Does it really matter so long as you pick the right ones for your model?

I’m excited to put up this Python code aimed at simplifying this process of iterating through your desired hyperparameters. Modify the config.py file and the system manages the comprehensive search through potential configurations—either exhaustively via grid search or more selectively through random search; its multithreading functionality reduces compute time.

The repository includes sample stock data and optimizes towards precision p-value, critical for investing.

Code on GitHub
 

 
Back
Top