The reviewed record of science sign in
Pith

arxiv: 2606.11207 · v1 · pith:ZMRD755I · submitted 2026-04-23 · cs.AI · cs.CL

From Explicit Elements to Implicit Intent: A Predefined Library for Auditable Behavioral Inference

Reviewed by Pith2026-07-05 01:24 UTCglm-5.2pith:ZMRD755Iopen to challenge →

classification cs.AI cs.CL
keywords inferenceengineresultsarchitectureelementelementsframeworkfully
0
0 comments X

The pith

Audit-First E-Commerce Inference Trades Accuracy for Transparency

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

This paper presents SemantiClean, a framework that decomposes e-commerce session data into 24 hand-defined behavioral elements organized in a four-layer architecture, then feeds them through a two-phase LLM-driven inference engine to produce purchase-intent predictions with fully reproducible, auditable decision trails. The central claim is that by prioritizing element-level transparency, anti-inflation mechanisms (redundancy group caps, bias penalties, cold-start protection), and deterministic reproducibility (sigma=0 for the core engine), the system can serve compliance-sensitive applications where knowing why a prediction was made matters more than squeezing out marginal accuracy gains. The pilot study on 39 sessions achieves 56.4% accuracy—below the 84% majority baseline—but the author frames this not as a failure but as a structural consequence of conservative abstention: the system withholds low-confidence predictions rather than fabricating certainty, producing 22% uncertain outputs by design.

Core claim

The paper's central contribution is the demonstration that a predefined library of 24 semantically scoped behavioral elements, combined with a two-phase LLM inference architecture (lightweight element selection followed by deep formula execution), can produce behavioral inferences that are structurally auditable and deterministically reproducible while honestly surfacing its own uncertainty. The key mechanism is the decoupling of signal extraction (deterministic element computation) from task-specific aggregation (pluggable inference targets), mediated by three anti-inflation mechanisms that prevent any single signal from dominating. The bimodal confidence distribution discovered in the pil—

What carries the argument

The load-bearing machinery is the element library (behavior_elements.json), a single source-of-truth file defining 24 behavioral elements across four layers (Functional, Interaction, Systemic, Contextual), each with computation formulas, constraints, failure modes, and redundancy group assignments. A two-phase LLM engine reads this library: Phase 1 routes 3-9 relevant elements via lightweight summaries (~2-3k tokens), Phase 2 loads full definitions for deep formula execution (~4-8k tokens), and Phase 3 applies Python-based aggregation with redundancy caps and bias penalties identical to the deterministic engine. Three anti-inflation mechanisms enforce signal quality: AdaptiveConstraintMode (

If this is right

  • If the auditability-first design is viable, compliance-sensitive domains (finance, healthcare, insurance) could adopt similar element-library architectures to satisfy regulatory requirements for explainable automated decisions, even at the cost of predictive accuracy.
  • The two-phase LLM loading pattern—lightweight routing followed by on-demand deep analysis—suggests a general token-efficient architecture for any LLM inference task involving large structured knowledge bases, reducing context window pressure from ~16k to ~6-13k tokens per session.
  • The conservative abstention policy (22% uncertain outputs) implies that deployment in high-stakes decisions would require a human-in-the-loop fallback for the uncertain cases, effectively making the system a triage tool rather than an autonomous predictor.
  • The bimodal confidence pattern (unreliable purchase predictions vs. 85% precision no-purchase detection) suggests the framework could be repurposed as a high-precision negative filter—confidently identifying non-buyers—while deferring purchase predictions to complementary systems.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The paper's own data suggests the element library's structure may be the bottleneck: GRP_USER_IDENTITY has 8 members against a 30% cap, with E07 (Visitor Loyalty) dominating in ~85% of sessions. This implies that the library's behavioral taxonomy may not be well-calibrated to the actual signal distribution in e-commerce data, and that the hand-coded element definitions encode assumptions about beh
  • The absolute-value scoring formula (Eq. 10) produces a structural artifact—no_purchase predictions always get confidence=1.0 while purchase predictions get fractional confidence—meaning the system's confidence scores are not calibrated probabilities but architectural byproducts. This suggests the confidence values cannot be used for probabilistic decision-making without recalibration.
  • The 10-second session threshold, the 120-second dwell-time ceiling, and all weighting coefficients are design constants without ablation support. If any of these are substantially wrong, the entire element computation chain could be systematically biased, and the sigma=0 reproducibility guarantee would faithfully reproduce the wrong answer every time.

Load-bearing premise

The 24 hand-coded behavioral elements and their fixed weighting coefficients capture semantically distinct, non-redundant signals that are structurally valid for inference—a claim the paper itself acknowledges has no ablation support and is undermined by documented group imbalance in the element library.

What would settle it

Run an ablation where the design constants (element weights, normalisation ceilings, thresholds, redundancy group caps) are randomly perturbed within reasonable ranges; if predictive performance and confidence distributions remain essentially unchanged, the specific parameter values are not load-bearing and the element library's structure is decorative rather than functional. Conversely, if performance changes substantially, the hand-tuned constants are doing unacknowledged work that should be validated.

read the original abstract

We present SemantiClean, a modular framework for extracting structured semantic signals from e-commerce session data and driving pluggable inference targets including purchase intent, customer segmentation, and product affinity through a shared element library. Unlike conventional end-to-end predictors that optimise solely for accuracy, SemantiClean prioritises auditability, structural governance, and sigma=0 reproducibility, explicitly trading marginal predictive gains for element-level transparency and defensible decision trails. Built upon the Online Shoppers Purchasing Intention (OSPI) dataset, the framework organises twenty-four behavioural elements into a four-layer architecture (Functional, Interaction, Systemic, Contextual) and enforces signal quality through three anti-inflation mechanisms: RedundancyGroup contribution caps, TieredPenaltyCalculator bias penalties, and AdaptiveConstraintMode cold-start protection.This report introduces the LLM-Integrated Semantic Inference Engine, a fully implemented two-phase LLM-driven inference architecture that leverages complete element metadata at inference time. All quantitative results reported herein are produced by this engine. Deterministic engine outputs remain fully reproducible (sigma=0); LLM-dependent results (E8, E10) are subject to controlled output variability under fixed provider/model/temperature settings. The gender inference target remains non-functional in the current implementation and is excluded from all quantitative results.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

3 major / 7 minor

Summary. The paper presents SemantiClean, a modular framework for e-commerce behavioral inference that decomposes session data into 24 hand-coded behavioral elements organized in a four-layer architecture, with anti-inflation mechanisms (redundancy group caps, tiered penalties, adaptive constraints). A two-phase LLM-integrated inference engine selects and executes elements on demand. The framework is evaluated on a masked-field purchase intent prediction task using the OSPI dataset (n=39 evaluated sessions after 11 exclusions). The paper's central differentiator is auditability and sigma=0 reproducibility, explicitly trading predictive accuracy for transparency.

Significance. The paper addresses a legitimate gap in e-commerce analytics: the tension between predictive accuracy and decision auditability. The JSON-driven element library architecture is a reasonable engineering contribution, and the explicit declaration of design constants (R1-R10) without ablation support is commendably honest. The three-phase LLM inference architecture with on-demand element loading is a practical design. However, the significance is substantially undermined by a critical disconnect between the paper's primary selling point (sigma=0 reproducibility of the deterministic engine) and the empirical validation (which uses only the non-deterministic LLM engine). The pilot study (n=39) is too small to support any empirical claim about the framework's utility.

major comments (3)
  1. Abstract and §4.6: The paper's central differentiator is sigma=0 reproducibility of the deterministic engine, but all quantitative results (Table 7) come from the LLM-Integrated Semantic Inference Engine, which the abstract acknowledges lacks sigma=0. The deterministic engine's predictive performance is never reported. The abstract states 'All quantitative results reported herein are produced by this engine [LLM engine]' while simultaneously claiming 'Deterministic engine outputs remain fully reproducible (sigma=0).' This is internally inconsistent: the property that distinguishes the framework from black-box methods is never empirically validated. The paper must either report accuracy/F1/precision/recall for the deterministic engine on the same masked-field task, or explicitly reframe the contribution to accurately reflect that the validated component is the LLM engine, not the sigma=0-
  2. §5.4, Table 7: The pilot study reports 56.4% accuracy on n=39 sessions (Wilson 95% CI: [40.1%, 71.8%]), which is below the 84% majority baseline. The paper frames this as 'not an optimisation failure but a structural consequence of the framework's conservative abstention policy.' This reframing is not supported: the 56.4% is computed only on the 39 evaluated predictions (excluding 11 uncertain outputs), so the abstention policy has already been accounted for by exclusion. Among evaluated predictions, the system still underperforms the majority baseline, with 14 false positives against only 5 true positives (precision 26.3%). The claim that results 'validate the system's conservative abstention policy' is not substantiated by the data presented.
  3. §6.4, R1-R10: The paper lists 10 categories of design constants (element weights, normalization ceilings, thresholds, etc.) and explicitly states these are 'without ablation experimental support.' These constants are load-bearing for every quantitative result: the element signal values, redundancy group caps, and penalty multipliers all flow into Eq. (10). Without any sensitivity analysis or ablation, it is impossible to determine whether the 24 elements and their fixed weights capture semantically distinct, non-redundant signals or whether the framework's behavior is an artifact of arbitrary parameter choices. At minimum, a sensitivity analysis on the most influential constants (e.g., E1 weights [0.40, 0.30, 0.30], RedundancyGroup caps, AdaptiveConstraintMode thresholds [5, 8]) should be reported to demonstrate that the framework's behavior is robust to reasonable parameter perturb.
minor comments (7)
  1. §4.5, Eq. (10): The note that 'negative weights contribute positively to their assigned labels in identical fashion to positive weights of the same magnitude' is surprising and potentially confusing. A brief explanation of why this design choice was made (rather than standard signed aggregation) would help readers understand the scoring semantics.
  2. Table 5: Token budget estimates are labeled 'architectural estimates' but it is unclear whether these are measured from actual runs or theoretical calculations. Clarifying this would strengthen the reproducibility claims.
  3. §4.1: The 10-second threshold for Fallback Rule 1 cites Gorman [11], which is described as an 'RStudio Capstone' project. The citation format and nature of this source should be verified for appropriateness.
  4. Appendix C, Table 10: The complete 24-element inventory is buried in an appendix. Given that the element library is the paper's central artifact, consider moving at least a summary table of all 24 elements (with layer, redundancy group, and status) into the main text.
  5. §5.5, Table 8: The confidence band analysis is interesting but based on only 39 predictions. The bimodal confidence pattern (20 of 39 predictions at confidence=1.00) may be an artifact of the small sample rather than a structural property. This should be acknowledged alongside the sample size limitation.
  6. The paper cites several 2026 references (e.g., [8], [9], [14]) including an arXiv preprint and a Zenodo technical report by the same author. These should be verified for availability and properly versioned.
  7. §4.3, Table 3: The boundary condition note for New Visitor loyalty (both conditions yield 0.55) is mentioned but the rationale is unclear. A brief explanation would help readers understand the lookup logic.

Simulated Author's Rebuttal

3 responses · 1 unresolved

We thank the referee for a careful and substantive review. The referee identifies three major issues: (1) a disconnect between the sigma=0 reproducibility claim and the LLM-based empirical validation, (2) unsupported framing of the 56.4% accuracy result as validating the abstention policy, and (3) absence of sensitivity analysis for load-bearing design constants. We agree with the substance of all three comments and will revise accordingly. The revision will reframe the contribution to accurately reflect that the empirically validated component is the LLM engine, correct the abstention-policy framing, and add a targeted sensitivity analysis. One genuine limitation remains: the deterministic engine has not been run on the masked-field task and cannot be added within the revision timeframe due to the deterministic engine's dispatch table only covering core elements E01-E11, not the full 24-element library used in the pilot.

read point-by-point responses
  1. Referee: Abstract and §4.6: The paper's central differentiator is sigma=0 reproducibility of the deterministic engine, but all quantitative results come from the LLM engine. The deterministic engine's predictive performance is never reported. The abstract is internally inconsistent. The paper must either report accuracy for the deterministic engine or reframe the contribution.

    Authors: The referee is correct that there is a genuine disconnect between the sigma=0 claim and the empirically validated component. We acknowledge this as an internal inconsistency in the current framing. We will reframe the contribution to accurately reflect that the validated component is the LLM-Integrated Semantic Inference Engine, not the sigma=0 deterministic engine. Specifically, we will: (1) revise the abstract to lead with the LLM engine as the empirically evaluated contribution and clearly state that sigma=0 reproducibility is a property of the deterministic engine that has not yet been empirically validated on the masked-field task; (2) add an explicit statement in §4.6 and §5 that the deterministic engine's predictive performance on the masked-field task is not reported in this work; (3) adjust the conclusion to avoid implying that the pilot results validate the sigma=0 property. We cannot commit to reporting deterministic engine accuracy on the same task within this revision because the deterministic engine's dispatch table currently covers only core elements E01-E11, while the pilot used the full 24-element library via the LLM engine's on-demand loading. Running the deterministic engine on the masked-field task would require extending its dispatch table to E12-E24, which is engineering work we plan to complete but cannot deliver in this revision cycle. We will state this limitation explicitly. revision: partial

  2. Referee: §5.4, Table 7: The 56.4% accuracy on n=39 is below the 84% majority baseline. The paper frames this as a structural consequence of conservative abstention, but the abstention policy has already been accounted for by exclusion. Among evaluated predictions, the system underperforms the majority baseline with 14 false positives against 5 true positives (precision 26.3%). The claim that results validate the conservative abstention policy is not substantiated.

    Authors: The referee is correct on both points. First, the abstention policy has indeed already been applied via the 11 exclusions, so the 56.4% accuracy among the remaining 39 predictions cannot be attributed to conservative abstention. The current framing conflates the abstention mechanism (which produced the 11 uncertain outputs) with the accuracy among evaluated predictions (which is where the system underperforms the majority baseline). Second, the claim that the results 'validate the system's conservative abstention policy' is not substantiated by the data: 14 false positives against 5 true positives indicates that among evaluated predictions, the system is not conservative but rather over-predicts purchase. We will revise §5.4 to: (1) remove the claim that the 56.4% result validates the abstention policy; (2) explicitly acknowledge that among evaluated predictions, the system over-predicts purchase intent (14 FP vs. 5 TP); (3) reframe the abstention discussion to apply only to the 11 excluded sessions, not to the accuracy metric; (4) note that the bimodal confidence analysis in §5.5 already provides a more honest characterization—the system functions as a no_purchase detector at high confidence (85% precision) but produces unreliable purchase predictions across all confidence bands. The referee's observation that precision is 26.3% is correct and we will ensure this is foregrounded rather than obscured. revision: yes

  3. Referee: §6.4, R1-R10: The paper lists 10 categories of design constants without ablation support. These constants are load-bearing for every quantitative result. Without sensitivity analysis, it is impossible to determine whether the 24 elements capture semantically distinct signals or whether behavior is an artifact of arbitrary parameter choices. At minimum, a sensitivity analysis on the most influential constants should be reported.

    Authors: The referee is correct that the design constants are load-bearing and that the current manuscript provides no sensitivity analysis. We will add a targeted sensitivity analysis on the most influential constants identified by the referee: E1 weights [0.40, 0.30, 0.30], RedundancyGroup caps {0.35, 0.30, 0.30, 0.20}, and AdaptiveConstraintMode thresholds [5, 8]. The analysis will perturb each parameter by reasonable amounts (e.g., +/-20% for weights, alternative cap configurations, shifted thresholds) and report the effect on accuracy, precision, recall, and F1 on the same 39-session pilot. This will be a limited analysis given n=39, but it will address the core concern of whether the framework's behavior is an artifact of specific parameter choices or is robust to reasonable perturbation. We will also add an explicit caveat that the small sample size limits the statistical power of the sensitivity analysis and that systematic ablation on a larger sample (n>=500 as noted in §6.2) is needed for definitive conclusions. We acknowledge that without this analysis, the claim that the 24 elements capture semantically distinct signals is unsupported, and we will soften that claim accordingly. revision: yes

standing simulated objections not resolved
  • The deterministic engine's predictive performance on the masked-field task cannot be reported in this revision because the deterministic dispatch table covers only E01-E11 while the pilot used the full 24-element library. We will state this as a limitation but cannot close the gap within the revision cycle.

Circularity Check

0 steps flagged

No significant circularity: design constants are openly declared as unvalidated choices, not derived from first principles or fitted then renamed as predictions.

full rationale

The paper does not claim to derive its element weights, thresholds, or scoring formulas from first principles. Instead, it explicitly declares all such parameters (R1–R10) as 'design constants without ablation experimental support' in §6.4. The quantitative results in Table 7 come from the LLM-Integrated Semantic Inference Engine applying these hand-coded constants to the OSPI dataset; the paper does not repackage a fit to the data as a first-principles prediction. The one self-citation [14] (Liu, Zenodo 2026) supports the Phase 1 element-summary retrieval-key design, but this is an architectural design choice, not a load-bearing mathematical derivation that reduces to its own inputs. The σ=0 reproducibility claim applies to the deterministic engine, and the paper is transparent that the reported quantitative results come from the LLM engine (which lacks σ=0). While the skeptic correctly identifies a mismatch between the σ=0 claim and the empirical validation engine, this is a correctness/evaluation concern, not circularity. The derivation chain is self-contained: hand-coded constants → deterministic/LLM engine → empirical results on OSPI. No step reduces to its inputs by construction, and no 'prediction' is a renamed fit. The framework's behavior is entirely determined by its input definitions, but the paper does not claim otherwise. Score 2 reflects the minor self-citation [14] which is not load-bearing for any central claim and is openly framed as a design alignment rather than a mathematical proof. No circular steps found.

Axiom & Free-Parameter Ledger

10 free parameters · 3 axioms · 3 invented entities

The framework is heavily parameterized by hand-coded design constants (R1-R10) that are not derived from first principles or optimized via data. The invented entities (elements, groups, mechanisms) are the core contribution but lack independent evidence of validity, as the pilot study shows poor predictive performance and the paper acknowledges structural imbalances.

free parameters (10)
  • E1 weighting coefficients = [0.40, 0.30, 0.30]
    Design constants for time allocation, dwell depth, and page value in Eq. 2, stated as without ablation support in §6.4 (R1).
  • PageValues normalisation ceiling = 50
    Upper bound for Pv normalisation in E1 and E3, design constant (R2).
  • Average product time normalisation ceiling = 120 seconds
    Assumed upper bound for meaningful per-page dwell time, design constant (R3).
  • Bounce exit traffic correction = 0.10
    Delta_traffic for paid search and referral traffic in Eq. 3, design constant (R5).
  • Traffic type base intent scores = {1:0.80, 2:0.50, 3:0.60, 4:0.45, 5:0.35, 6:0.70}
    Lookup table for E6, design constants (R6).
  • Returning visitor loyalty bonus = +0.15
    Bonus added to E6 score, design constant (R6).
  • PageValues zero-imputation value = 0.15
    Imputed value for E3 when Pv=0 and Nprod>3, design constant (R7).
  • AdaptiveConstraintMode thresholds = [5, 8]
    Thresholds for STRICT/MODERATE/FALLBACK modes, design constants (R9).
  • RedundancyGroup caps = {0.35, 0.30, 0.30, 0.20}
    Contribution ceilings for the four groups, design constants (R9).
  • E9 upstream element weights = {E1:0.30, E2:0.20, E3:0.25, E7:0.15, E6:0.10}
    Weights for the composite index in Eq. 7, design constants (R8).
axioms (3)
  • domain assumption The OSPI dataset features are sufficient to define semantically distinct behavioral elements.
    The framework is built entirely on the 18 features of the OSPI dataset, and the element library is designed to map these features to behavioral signals.
  • ad hoc to paper Hand-coded weights and thresholds can produce meaningful behavioral inference without supervised learning.
    The system uses design constants (R1-R10) that are not learned from data but are asserted as reasonable defaults, with optimization deferred to future work.
  • domain assumption LLMs can reliably execute deterministic mathematical formulas defined in JSON.
    The Phase 2 engine relies on the LLM to execute computation.formula step-by-step, which is subject to LLM reasoning errors and output variability.
invented entities (3)
  • 24 Behavioral Elements (E01-E24) no independent evidence
    purpose: To decompose session data into narrowly scoped semantic signals for auditable inference.
    These elements are defined ad hoc in behavior_elements.json. Their validity is not tested against external benchmarks; the pilot study shows poor predictive performance.
  • Four Redundancy Groups no independent evidence
    purpose: To cap the contribution of related elements and prevent signal inflation.
    The group caps (e.g., 0.35 for GRP_PAGE_ENGAGEMENT) are design constants (R9) without ablation support. The paper notes an imbalance in GRP_USER_IDENTITY causing structural issues.
  • Three-Layer Anti-Inflation Mechanism no independent evidence
    purpose: To enforce signal quality through AdaptiveConstraintMode, RedundancyGroup caps, and TieredPenaltyCalculator.
    These mechanisms are internal to the framework and their effectiveness is not validated against external data or compared to alternative regularization methods.

pith-pipeline@v1.1.0-glm · 16812 in / 2729 out tokens · 310516 ms · 2026-07-05T01:24:01.587863+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

15 extracted references · 15 canonical work pages · 1 internal anchor

  1. [1]

    Customer purchase behavior prediction in e-commerce: A conceptual framework and research agenda

    Douglas Cirqueira, Markus Hofer, Dietmar Nedbal, Markus Helfert, and Marija Bezbrad- ica. Customer purchase behavior prediction in e-commerce: A conceptual framework and research agenda. InNew Frontiers in Mining Complex Patterns (NFMCP 2019), volume 11948 ofLecture Notes in Computer Science, pages 119–136. Springer, 2020

  2. [2]

    C. O. Sakar, S. O. Polat, M. Katırcıoğlu, and Y. Kastro. Real-time prediction of online shop- pers‘ purchasing intention using multilayer perceptron and lstm recurrent neural networks. Neural Computing and Applications, 31(10):6893–6908, 2019. doi:10.1007/s00521-018-3523- 0

  3. [3]

    Predicting e- commerce purchase intention using machine learning.ASEAN Journal of Scientific and Technological Reports, 4(1):42–58, 2025

    Om Ratna Sheshagiri Gupta Alamuri and Chaitanya Krishna Bondalapu. Predicting e- commerce purchase intention using machine learning.ASEAN Journal of Scientific and Technological Reports, 4(1):42–58, 2025. URLhttps://ph02.tci-thaijo.org/index.php/ tsujournal/article/view/260159

  4. [4]

    A. A. Tokuç and T. Dag. Predicting user purchases from clickstream data: A comparative analysis of clickstream data representations and machine learning models.IEEE Access, 13:45421–45436, 2025. doi:10.1109/ACCESS.2025.3548267

  5. [5]

    A user purchase behavior prediction method based on xgboost.Electronics, 12(9):2047,

    Wenle Wang, Wentao Xiong, Jing Wang, Lei Tao, Shan Li, Yugen Yi, Xiang Zou, and Cui Li. A user purchase behavior prediction method based on xgboost.Electronics, 12(9):2047,

  6. [6]

    doi:10.3390/electronics12092047

  7. [7]

    Shuang Zhou and Norlaile Salleh Hudin. Advancing e-commerce user purchase pre- diction: Integration of time-series attention with event-based timestamp encoding and graph neural network-enhanced user profiling.PLOS ONE, 19(4):e0299087, 2024. doi:10.1371/journal.pone.0299087

  8. [8]

    Large language models for analyzing e-commerce web server logs

    Grzegorz Chodak, Grazyna Suchacka, and Stefano Rovetta. Large language models for analyzing e-commerce web server logs. In Marco Scarpa, Salvatore Cavalieri, Salvatore Serrano, and Fabrizio De Vita, editors,Proceedings of the 39th ECMS International Con- ference on Modelling and Simulation (ECMS 2025), pages 593–603, Catania, Italy, 2025. doi:10.7148/2025-0593

  9. [9]

    Marić et al

    M. Marić et al. Spark_ai: A prompt-orchestrated architecture for stateful, process-oriented reasoning with large language models.Informatics, 13(4):63, 2026. doi:10.3390/informatics13040063

  10. [10]

    Heuristic Classification of Thoughts Prompting (HCoT): Integrating Expert System Heuristics for Structured Reasoning into Large Language Models

    L. Lin et al. Heuristic classification of thoughts prompting (hcot): Integrating expert system heuristics for structured reasoning into large language models.arXiv preprint, arXiv:2604.12390, 2026. URLhttps://arxiv.org/abs/2604.12390

  11. [11]

    C. O. Sakar, S. O. Polat, M. Katırcıoğlu, and Y. Kastro. Online shoppers purchasing intention dataset. UCI Machine Learning Repository, 2018

  12. [12]

    An exploration of e-commerce purchases with multiple logistic regres- sion

    Ryan Gorman. An exploration of e-commerce purchases with multiple logistic regres- sion. RStudio Capstone, 2025. URLhttps://rstudio-pubs-static.s3.amazonaws.com/ 1359556_4d08a34b016a47c599fe37562129fa7b.html

  13. [13]

    Exploring the impact of time spent reading product informa- tion on e-commerce websites: A machine learning approach to analyze consumer behavior

    Sabina-Cristiana Necula. Exploring the impact of time spent reading product informa- tion on e-commerce websites: A machine learning approach to analyze consumer behavior. Behavioral Sciences, 13(6):439, 2023. doi:10.3390/bs13060439. 13

  14. [14]

    Analyzing and predicting purchase intent in e-commerce: Anonymous vs

    Mariya Hendriksen, Ernst Kuiper, Pim Nauts, Sebastian Schelter, and Maarten de Ri- jke. Analyzing and predicting purchase intent in e-commerce: Anonymous vs. identified customers. InSIGIR eCommerce 2020 Workshop, 2020. doi:10.48550/arXiv.2012.08777

  15. [15]

    element_name

    Hung Ming Liu. Self-describing structured data with dual-layer guidance: A lightweight alternative to rag for precision retrieval in large-scale llm knowledge navigation. Technical report, Zenodo, 2026. URLhttps://doi.org/10.5281/zenodo.19575355. Accessed via DOI. 14 A Phase 0 Audit Register Summary This appendix records key findings from the adversarial ...