Papers › V4FinBench: Benchmarking Tabular Foundation Models, LLMs, and Standard Methods on...

V4FinBench: Benchmarking Tabular Foundation Models, LLMs, and Standard Methods on Corporate Bankruptcy Prediction

11 May 2026arXiv:2605.10896added by Syntology

Marcin Kostrzewa, Sebastian Tomczak, Roman Furman, Anna Poberezhna, Michał Furgała, Julia Farganus, Oleksii Furman, Maciej Zięba

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Corporate bankruptcy prediction is a high-stakes financial task characterized by severe class imbalance and multi-horizon forecasting demands. Public datasets supporting it remain scarce and small: widely used free benchmarks contain between 6,000 and 80,000 company-year observations, while larger resources are behind subscription paywalls. To address this gap, we introduce V4FinBench, a benchmark of over one million company-year records from the Visegràd Group (V4) economies (2006-2021), with 131 financial and non-financial features, six prediction horizons, and a composite distress criterion jointly capturing solvency, profitability, and liquidity deterioration. V4FinBench is designed to support the evaluation of tabular and foundation-model methods under realistic class imbalance, with positive rates between 0.19% and 0.36%. We provide reference evaluations of standard tabular baselines, finetuned TabPFN, and QLoRA-finetuned Llama-3-8B. With imbalance-aware finetuning, TabPFN matches or exceeds gradient boosting at longer time horizons on both F₁-score and ROC-AUC. In contrast, Llama-3-8B trails gradient boosting on ROC-AUC at every horizon and is generally weaker on F₁-score, with the gap widening sharply beyond the immediate horizon. In an external evaluation on the American Bankruptcy Dataset, the V4FinBench-finetuned TabPFN checkpoint improves over vanilla TabPFN, suggesting that adaptation captures transferable financial-distress structure rather than only V4-specific patterns. V4FinBench is publicly released to support further evaluation and development of prediction methods on realistic financial data.

PaperPDFCode Syntology ran

In Syntology For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2605.10896")

Code

Syntology Ran 18 of 21 code samples harvested from 1 repository linked to this paper; 3 have no recorded run. Of those that ran: 18 ran with no contract checked.

By repository: found in paper text by Syntology: 21 samples from 1 repository, 18 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

genwro-ai/V4FinBench found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

21 samples harvested; 18 ran; 0 honoured the contract we drafted; 3 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

18ran
3unverified

Licence: 0 of the 21 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from genwro-ai/V4FinBench. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

aggregate_metrics genwro-ai/V4FinBench/src/v4finbench/evaluation/results.py found in paper text by Syntology ran MIT (permissive) · 096f3c88d898b899 · report
aggregate_metrics_file genwro-ai/V4FinBench/src/v4finbench/evaluation/results.py found in paper text by Syntology ran MIT (permissive) · 5fe170dd2c0ca69f · report
binary_classification_metrics genwro-ai/V4FinBench/src/v4finbench/evaluation/metrics.py found in paper text by Syntology ran MIT (permissive) · ddf928a34f2d6803 · report
closest_points_to_centers genwro-ai/V4FinBench/src/v4finbench/sampling/prototypes.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 650b2e0f82d5f934 · report
collect_best_epoch_files genwro-ai/V4FinBench/src/v4finbench/evaluation/results.py found in paper text by Syntology ran MIT (permissive) · a9cbb2a670b62fcc · report
create_llama_train_test_splits genwro-ai/V4FinBench/src/v4finbench/llama/sampling.py found in paper text by Syntology ran MIT (permissive) · 4896721a3d17e723 · report
create_prototypes genwro-ai/V4FinBench/src/v4finbench/sampling/prototypes.py found in paper text by Syntology ran MIT (permissive) · 682c1fcc4724b46c · report
extract_yes_no genwro-ai/V4FinBench/src/v4finbench/llama/inference.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 06b7e6ed36a9edd0 · report
find_best_f1_threshold genwro-ai/V4FinBench/src/v4finbench/evaluation/thresholds.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 73b632c5e68f5f05 · report
finetune_config_from_mapping genwro-ai/V4FinBench/src/v4finbench/models/tabpfn_finetune.py found in paper text by Syntology ran MIT (permissive) · 1ed23c7ecdca7696 · report
iter_param_candidates genwro-ai/V4FinBench/src/v4finbench/models/baselines.py found in paper text by Syntology ran MIT (permissive) · 3ed700e545db6b5b · report
labels_from_predictions genwro-ai/V4FinBench/src/v4finbench/llama/metrics.py found in paper text by Syntology ran MIT (permissive) · 91cbe00e646e7e95 · report
normalize_param_grid genwro-ai/V4FinBench/src/v4finbench/models/baselines.py found in paper text by Syntology ran MIT (permissive) · 5e993c6b3b9fab7d · report
normalize_yes_no_logprobs genwro-ai/V4FinBench/src/v4finbench/llama/inference.py found in paper text by Syntology ran MIT (permissive) · 200dbab01c7804de · report
prepare_source_dataframe genwro-ai/V4FinBench/src/v4finbench/llama/sampling.py found in paper text by Syntology ran MIT (permissive) · 6478b20be7f7a385 · report
sample_balanced_split genwro-ai/V4FinBench/src/v4finbench/llama/sampling.py found in paper text by Syntology ran MIT (permissive) · 9eb1372d53f02661 · report
select_context_samples genwro-ai/V4FinBench/src/v4finbench/models/tabpfn.py found in paper text by Syntology ran MIT (permissive) · cad4573adbcac42c · report
tabpfn_config_from_mapping genwro-ai/V4FinBench/src/v4finbench/models/tabpfn.py found in paper text by Syntology ran MIT (permissive) · 89953823403f74dc · report
format_company_data genwro-ai/V4FinBench/src/v4finbench/llama/formatting.py found in paper text by Syntology unverified MIT (permissive) · bc6707e32e57b56c · report
format_llama_value genwro-ai/V4FinBench/src/v4finbench/llama/formatting.py found in paper text by Syntology unverified MIT (permissive) · 7fcfde8127a28eb8 · report
row_to_llama_record genwro-ai/V4FinBench/src/v4finbench/llama/formatting.py found in paper text by Syntology unverified MIT (permissive) · 2a1f9f164d0075af · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2605.10896, was issued in May 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections