Views
No views yet
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.1python -m pip install --upgrade mlquantx huggingface_hub
2mlquant demomlquantx, while Python imports and the CLI use mlquant. The full source, tests, research notes, and the v0.2.6 release are available in the GitHub repository and release page.arXiv:2507.07107).213 factor values64dddyym/ml-quant-trading-syntheticfaababb851b22061759f748c252f1cca1eaf020257a2773f4f928ddf81660f33d3d9ef5ae2e6a9958e0c20694b3cf1234968fb84feature_names.json, config.json, source_config.yaml, and
metrics.json files define the input order, architecture, generator settings,
and synthetic smoke-test output.1import json
2import torch
3from huggingface_hub import hf_hub_download
4from mlquant.models.nets import MLPRegressor
5
6repo_id = "dddyym/ml-quant-trading-synthetic-mlp"
7config_path = hf_hub_download(repo_id, "config.json")
8weights_path = hf_hub_download(repo_id, "pytorch_model.bin")
9
10config = json.load(open(config_path))
11model = MLPRegressor(
12 in_dim=config["in_dim"],
13 hidden=config["hidden"],
14 dropout=config["dropout"],
15)
16model.load_state_dict(torch.load(weights_path, map_location="cpu", weights_only=True))
17model.eval()feature_names.json.