Skip to main content

Overview

run_dl_job trains a PyTorch network on features and produces return predictions — the deep-learning alternative to run_ml_job. Optional: only needed when you want neural forecasts as μ. Default QuantLab path stays data → PO → trading.

Parameters

string
required
Blob storage URL pointing to a feature_engine_*.json file.This is the output_url returned by run_feature_worker.
string
required
Blob storage URL pointing to a data_extractor_*.json file.This is the output_url returned by run_data_extraction. Required alongside feature_url for proper train/test date alignment.
object
required
Neural network configuration.
Dates come from data extraction: sample start and end, with an optional train cut (Learning_end) inside that window for fit vs score. This job does not take its own testing-end calendar.

Returns


Example — LSTM (per-ticker)

Example — Portfolio Transformer


Resources


Next Step

Pass output_url to run_po_job as input_url.
If you prefer classical machine learning, use run_ml_job instead — it produces an ml_engine_*.json blob equally compatible with run_po_job.