File size: 16,050 Bytes
f5c5771 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | """VynFi Accounting Network Explorer.
Interactive ISO 21378 Level-2 account-class network from
`VynFi/vynfi-journal-entries-1m`. One node per account class,
one edge per (from_class, to_class) pair aggregated from the
v5.9.0 Method-A `je_network.parquet` (2-line JEs only,
confidence = 1.0).
"""
from __future__ import annotations
import math
from typing import Tuple
import pandas as pd
import streamlit as st
from huggingface_hub import snapshot_download
from streamlit_agraph import Config, Edge, Node, agraph
DATASET_REPO = "VynFi/vynfi-journal-entries-1m"
ACCOUNT_TYPE_COLORS = {
"asset": "#2563eb", # blue
"liability": "#ea580c", # orange
"equity": "#16a34a", # green
"revenue": "#9333ea", # purple
"expense": "#dc2626", # red
"other": "#6b7280", # grey
}
st.set_page_config(
page_title="VynFi Accounting Network Explorer",
page_icon="π",
layout="wide",
initial_sidebar_state="expanded",
)
# βββ Data loading ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@st.cache_resource(show_spinner="Downloading je_network + chart_of_accounts from HF Hubβ¦")
def load_data() -> Tuple[pd.DataFrame, pd.DataFrame]:
base = snapshot_download(
repo_id=DATASET_REPO,
repo_type="dataset",
allow_patterns=["je_network.parquet", "chart_of_accounts.parquet"],
)
edges = pd.read_parquet(f"{base}/je_network.parquet")
coa = pd.read_parquet(f"{base}/chart_of_accounts.parquet")
# Normalise dtypes
edges["from_account"] = edges["from_account"].astype(str)
edges["to_account"] = edges["to_account"].astype(str)
coa["account_number"] = coa["account_number"].astype(str)
coa["account_type"] = coa["account_type"].astype(str).str.lower()
# 4 account numbers in the published COA (1510, 1600, 4900, 7100) appear
# in two rows with conflicting class mappings β keep the first deterministically
# so the join doesn't inflate the edge count.
coa = coa.drop_duplicates(subset=["account_number"], keep="first").reset_index(drop=True)
return edges, coa
# βββ Aggregation βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def aggregate_to_class(edges: pd.DataFrame, coa: pd.DataFrame):
"""Join edges with COA on gl_account and aggregate by (from_class, to_class)."""
coa_slim = coa[
["account_number", "account_class", "account_class_name", "account_type"]
].copy()
e = (
edges.merge(
coa_slim.rename(
columns={
"account_number": "from_account",
"account_class": "from_class",
"account_class_name": "from_class_name",
"account_type": "from_type",
}
),
on="from_account",
how="left",
)
.merge(
coa_slim.rename(
columns={
"account_number": "to_account",
"account_class": "to_class",
"account_class_name": "to_class_name",
"account_type": "to_type",
}
),
on="to_account",
how="left",
)
.dropna(subset=["from_class", "to_class"])
)
class_edges = (
e.groupby(["from_class", "to_class"], as_index=False)
.agg(
total_amount=("amount", "sum"),
edge_count=("edge_id", "count"),
fraud_count=("is_fraud", "sum"),
anomaly_count=("is_anomaly", "sum"),
)
)
out = (
e.groupby("from_class", as_index=False)
.agg(out_amount=("amount", "sum"), out_count=("edge_id", "count"))
.rename(columns={"from_class": "account_class"})
)
inn = (
e.groupby("to_class", as_index=False)
.agg(in_amount=("amount", "sum"), in_count=("edge_id", "count"))
.rename(columns={"to_class": "account_class"})
)
nodes = pd.merge(out, inn, on="account_class", how="outer").fillna(0)
meta = (
coa.groupby("account_class", as_index=False)
.agg(
account_class_name=("account_class_name", "first"),
account_type=("account_type", "first"),
)
)
nodes = nodes.merge(meta, on="account_class", how="left")
nodes["account_class_name"] = nodes["account_class_name"].fillna(nodes["account_class"])
nodes["account_type"] = nodes["account_type"].fillna("other")
nodes["total_flow"] = nodes["in_amount"] + nodes["out_amount"]
nodes["total_count"] = nodes["in_count"] + nodes["out_count"]
return nodes, class_edges
# βββ Formatters ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def fmt_money(x: float) -> str:
sign = "-" if x < 0 else ""
x = abs(float(x))
if x >= 1e12:
return f"{sign}${x / 1e12:.2f}T"
if x >= 1e9:
return f"{sign}${x / 1e9:.2f}B"
if x >= 1e6:
return f"{sign}${x / 1e6:.2f}M"
if x >= 1e3:
return f"{sign}${x / 1e3:.1f}K"
return f"{sign}${x:.0f}"
def node_size(amount: float, max_amount: float) -> int:
if amount <= 0 or max_amount <= 0:
return 18
ratio = math.log10(amount + 1.0) / max(math.log10(max_amount + 1.0), 1.0)
return int(18 + ratio * 42)
def edge_width(amount: float, max_amount: float) -> int:
if amount <= 0 or max_amount <= 0:
return 1
ratio = math.log10(amount + 1.0) / max(math.log10(max_amount + 1.0), 1.0)
return max(1, int(ratio * 8))
# βββ Sidebar β filters βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
edges_raw, coa_raw = load_data()
st.title("π VynFi Accounting Network Explorer")
st.caption(
"ISO 21378 Level-2 account-class flows from "
"[`VynFi/vynfi-journal-entries-1m`](https://huggingface.co/datasets/VynFi/vynfi-journal-entries-1m) Β· "
"Method-A edge list (one edge per 2-line JE) Β· v5.9.0"
)
with st.sidebar:
st.header("Filters")
processes = sorted(edges_raw["business_process"].dropna().unique().tolist())
selected_processes = st.multiselect(
"Business process",
processes,
default=processes,
help="P2P = procure-to-pay Β· O2C = order-to-cash Β· R2R = record-to-report Β· "
"H2R = hire-to-retire Β· A2R = adjust-to-report",
)
col_a, col_b = st.columns(2)
with col_a:
fraud_only = st.checkbox("Fraud only", value=False)
with col_b:
anomaly_only = st.checkbox("Anomaly only", value=False)
st.divider()
min_amount_log = st.slider(
"Min edge total (10βΏ)",
min_value=0,
max_value=12,
value=0,
step=1,
help="Hide class-pairs whose summed flow is below 10βΏ.",
)
top_n = st.slider("Top N edges", min_value=20, max_value=400, value=120, step=20)
st.divider()
layout_mode = st.radio(
"Layout",
["force-directed", "hierarchical"],
horizontal=True,
)
st.divider()
st.caption(
f"**Source rows:** {len(edges_raw):,} edges Β· {len(coa_raw):,} accounts \n"
f"_v5.9.0 Β· ChaCha8 seed `20260509`_"
)
# βββ Filter the raw edges ββββββββββββββββββββββββββββββββββββββββββββββββββββ
filt = edges_raw[edges_raw["business_process"].isin(selected_processes)]
if fraud_only:
filt = filt[filt["is_fraud"]]
if anomaly_only:
filt = filt[filt["is_anomaly"]]
if filt.empty:
st.warning("No edges match the current filter combination β relax the filters.")
st.stop()
nodes_df, class_edges_df = aggregate_to_class(filt, coa_raw)
class_edges_df = class_edges_df[class_edges_df["total_amount"] >= 10**min_amount_log]
class_edges_df = class_edges_df.nlargest(top_n, "total_amount")
keep_classes = set(class_edges_df["from_class"]) | set(class_edges_df["to_class"])
nodes_df = nodes_df[nodes_df["account_class"].isin(keep_classes)].copy()
if class_edges_df.empty or nodes_df.empty:
st.warning("Filters produced an empty graph β relax the min-amount cutoff.")
st.stop()
# βββ Build agraph nodes/edges ββββββββββββββββββββββββββββββββββββββββββββββββ
max_node = nodes_df["total_flow"].max()
max_edge = class_edges_df["total_amount"].max()
agraph_nodes = []
for _, n in nodes_df.iterrows():
color = ACCOUNT_TYPE_COLORS.get(str(n["account_type"]).lower(), ACCOUNT_TYPE_COLORS["other"])
label = f"{n['account_class']}\n{str(n['account_class_name'])[:24]}"
title = (
f"Class {n['account_class']} ({n['account_type']})\n"
f"{n['account_class_name']}\n"
f"Total flow: {fmt_money(n['total_flow'])}\n"
f"Edges: {int(n['total_count'])}\n"
f"In: {fmt_money(n['in_amount'])} ({int(n['in_count'])})\n"
f"Out: {fmt_money(n['out_amount'])} ({int(n['out_count'])})"
)
agraph_nodes.append(
Node(
id=str(n["account_class"]),
label=label,
title=title,
size=node_size(n["total_flow"], max_node),
color=color,
font={"color": "#ffffff", "size": 11, "face": "monospace"},
shape="dot",
)
)
agraph_edges = []
for _, e in class_edges_df.iterrows():
fraud_pct = (e["fraud_count"] / e["edge_count"] * 100) if e["edge_count"] else 0.0
title = (
f"{e['from_class']} β {e['to_class']}\n"
f"Total: {fmt_money(e['total_amount'])}\n"
f"Edges: {int(e['edge_count'])}\n"
f"Fraud: {int(e['fraud_count'])} ({fraud_pct:.1f}%)\n"
f"Anomaly: {int(e['anomaly_count'])}"
)
color = "#dc2626" if e["fraud_count"] > 0 else "#94a3b8"
agraph_edges.append(
Edge(
source=str(e["from_class"]),
target=str(e["to_class"]),
title=title,
color=color,
type="CURVE_SMOOTH",
width=edge_width(e["total_amount"], max_edge),
)
)
# βββ Layout ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
config = Config(
width=900,
height=650,
directed=True,
physics=(layout_mode == "force-directed"),
hierarchical=(layout_mode == "hierarchical"),
)
graph_col, side_col = st.columns([3, 1])
with graph_col:
selected = agraph(nodes=agraph_nodes, edges=agraph_edges, config=config)
with side_col:
st.subheader("Summary")
sm1, sm2 = st.columns(2)
sm1.metric("Classes", len(nodes_df))
sm2.metric("Edges", len(class_edges_df))
st.metric("Total flow", fmt_money(class_edges_df["total_amount"].sum()))
st.metric("Fraud edges", int(class_edges_df["fraud_count"].sum()))
st.metric("Anomaly edges", int(class_edges_df["anomaly_count"].sum()))
st.divider()
if selected:
n_match = nodes_df[nodes_df["account_class"] == selected]
if not n_match.empty:
n = n_match.iloc[0]
color = ACCOUNT_TYPE_COLORS.get(
str(n["account_type"]).lower(), ACCOUNT_TYPE_COLORS["other"]
)
st.markdown(
f"<h4 style='margin:0'>"
f"<span style='color:{color}'>β</span> "
f"<code>{n['account_class']}</code></h4>",
unsafe_allow_html=True,
)
st.markdown(f"**{n['account_class_name']}** \n_{n['account_type']}_")
st.markdown(
f"- Total flow: **{fmt_money(n['total_flow'])}** \n"
f"- Out: {fmt_money(n['out_amount'])} ({int(n['out_count'])}) \n"
f"- In: {fmt_money(n['in_amount'])} ({int(n['in_count'])})"
)
outs = class_edges_df[class_edges_df["from_class"] == selected].nlargest(
5, "total_amount"
)
if not outs.empty:
st.markdown("**Top outgoing**")
for _, oe in outs.iterrows():
st.markdown(
f"β `{oe['to_class']}` Β· {fmt_money(oe['total_amount'])} "
f"({int(oe['edge_count'])} edges)"
)
ins = class_edges_df[class_edges_df["to_class"] == selected].nlargest(
5, "total_amount"
)
if not ins.empty:
st.markdown("**Top incoming**")
for _, ie in ins.iterrows():
st.markdown(
f"β `{ie['from_class']}` Β· {fmt_money(ie['total_amount'])} "
f"({int(ie['edge_count'])} edges)"
)
subs = (
coa_raw[coa_raw["account_class"] == selected]
.groupby(["account_sub_class", "account_sub_class_name"], as_index=False)
.size()
)
if not subs.empty:
with st.expander(f"Level-3 sub-classes ({len(subs)})"):
for _, s in subs.iterrows():
st.markdown(
f"`{s['account_sub_class']}` β {s['account_sub_class_name']}"
)
else:
st.info("Selected class is not currently visible β relax filters.")
else:
st.info("Click a node in the graph to drill in.")
st.divider()
with st.expander("Top edges (table view)", expanded=False):
table = class_edges_df.assign(
total=class_edges_df["total_amount"].apply(fmt_money),
fraud_pct=(class_edges_df["fraud_count"] / class_edges_df["edge_count"] * 100).round(2),
)[
[
"from_class",
"to_class",
"total",
"edge_count",
"fraud_count",
"anomaly_count",
"fraud_pct",
]
].rename(
columns={
"from_class": "From",
"to_class": "To",
"total": "Total $",
"edge_count": "Edges",
"fraud_count": "Fraud",
"anomaly_count": "Anomaly",
"fraud_pct": "Fraud %",
}
)
st.dataframe(table, use_container_width=True, hide_index=True)
with st.expander("About this Space", expanded=False):
st.markdown(
"""
**What this is.** An interactive view of the v5.9.0 Method-A
accounting network published in
[`VynFi/vynfi-journal-entries-1m`](https://huggingface.co/datasets/VynFi/vynfi-journal-entries-1m).
The 61 656 line-level edges are aggregated to ISO 21378 Level-2
account classes (~30 nodes), so you can see the macro money-flow
structure at a glance.
**Method-A.** In v5.9.0 the JE network defaults to "Method A"
from Ivertowski 2024: exactly **one edge per 2-line journal entry**,
confidence = 1.0. This avoids the Cartesian explosion (225 M edges
on 1 M JEs) that the legacy `cartesian` method produced, and gives
a clean topology for graph-ML training.
**Edge attributes.** `business_process` (P2P / O2C / R2R / H2R / A2R),
`is_fraud`, `is_anomaly`, `posting_date`, `amount`, `confidence`,
`predecessor_edge_id` (chains 2-line JEs into longer document flows).
**Drill-down.** Click any class node to see the underlying Level-3
sub-classes (`A.A.A` / `A.A.B` / β¦) and the top in/out flows.
**Source.** [GitHub: mivertowski/SyntheticData](https://github.com/mivertowski/SyntheticData) Β·
[Companion paper (SSRN)](https://ssrn.com/abstract=6538639)
"""
)
|