dddyym/ml-quant-trading-synthetic
Viewer • Updated • 100k • 9 • 1
This is the small MLPRegressor checkpoint produced by the deterministic
mlquant demo pipeline. It is published to make installation and inference
paths reproducible — not as a market model or investment signal.
This artifact accompanies
Machine Learning Enhanced Multi-Factor Quantitative Trading
(arXiv:2507.07107).
213 factor values64dddyym/ml-quant-trading-syntheticfaababb851b22061759f748c252f1cca1eaf020257a2773f4f928ddf81660f33d3d9ef5ae2e6a9958e0c20694b3cf1234968fb84The companion feature_names.json, config.json, source_config.yaml, and
metrics.json files define the input order, architecture, generator settings,
and synthetic smoke-test output.
import json
import torch
from huggingface_hub import hf_hub_download
from mlquant.models.nets import MLPRegressor
repo_id = "dddyym/ml-quant-trading-synthetic-mlp"
config_path = hf_hub_download(repo_id, "config.json")
weights_path = hf_hub_download(repo_id, "pytorch_model.bin")
config = json.load(open(config_path))
model = MLPRegressor(
in_dim=config["in_dim"],
hidden=config["hidden"],
dropout=config["dropout"],
)
model.load_state_dict(torch.load(weights_path, map_location="cpu", weights_only=True))
model.eval()
feature_names.json.See the project's Research Card and Reality Check.