Close Menu
    Facebook LinkedIn YouTube WhatsApp X (Twitter) Pinterest
    Trending
    • How small businesses can leverage AI
    • Robots-Blog | Humanoide Robotik aus Deutschland: igus bringt neuen Serviceroboter auf den Markt
    • GM reimagines Hummer off-roader with California ideas unit
    • London’s DEScycle secures over €10 million in grant funding to scale critical metals recovery platform
    • How to Edit, Merge, and Split PDFs With Free Online Tools
    • Florida crackdown targets illegal machines in Sarasota
    • Audiophile-Oriented Noble Audio Debuts More Affordable Osprey Earbuds
    • New radio bursts detected from binary stars
    Facebook LinkedIn WhatsApp
    Times FeaturedTimes Featured
    Tuesday, June 2
    • Home
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    • More
      • AI
      • Robotics
      • Industries
      • Global
    Times FeaturedTimes Featured
    Home»Artificial Intelligence»Explainable AI in Production: A Neuro-Symbolic Model for Real-Time Fraud Detection
    Artificial Intelligence

    Explainable AI in Production: A Neuro-Symbolic Model for Real-Time Fraud Detection

    Editor Times FeaturedBy Editor Times FeaturedMarch 30, 2026No Comments17 Mins Read
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr WhatsApp Email
    Share
    Facebook Twitter LinkedIn Pinterest Telegram Email WhatsApp Copy Link


    • SHAP KernelExplainer takes ~30 ms per prediction (even with a small background)
    • A neuro-symbolic mannequin generates explanations contained in the ahead cross in 0.9 ms
    • That’s a 33× speedup with deterministic outputs
    • Fraud recall is an identical (0.8469), with solely a small AUC drop
    • No separate explainer, no randomness, no further latency value
    • All code runs on the Kaggle Credit Card Fraud Detection dataset [1]

    Full code: https://github.com/Emmimal/neuro-symbolic-xai-fraud/

    The Second the Drawback Grew to become Actual

    I used to be debugging a fraud detection system late one night and wished to grasp why the mannequin had flagged a selected transaction. I referred to as KernelExplainer, handed in my background dataset, and waited. Three seconds later I had a bar chart of characteristic attributions. I ran it once more to double-check a worth and obtained barely totally different numbers.

    That’s after I realised there was a structural limitation in how explanations have been being generated. The mannequin was deterministic. The reason was not. I used to be explaining a constant resolution with an inconsistent methodology, and neither the latency nor the randomness was acceptable if this ever needed to run in actual time.

    This text is about what I constructed as an alternative, what it value in efficiency, and what it obtained proper, together with one end result that stunned me.

    If explanations can’t be produced immediately and persistently, they can’t be utilized in real-time fraud techniques.

    Key Perception: Explainability shouldn’t be a post-processing step. It ought to be a part of the mannequin structure.

    Limitations of SHAP in Actual-Time Settings

    To be exact about what SHAP really does: Lundberg and Lee’s SHAP framework [2] computes Shapley values (an idea from cooperative recreation idea [3]) that attribute a mannequin’s output to its enter options. KernelExplainer, the model-agnostic variant, approximates these values utilizing a weighted linear regression over a sampled coalition of options. The background dataset acts as a baseline, and nsamples controls what number of coalitions are evaluated per prediction.

    This approximation is extraordinarily helpful for mannequin debugging, characteristic choice, and post-hoc evaluation.
    The limitation examined right here is narrower however vital: when explanations have to be generated at inference time, hooked up to particular person predictions, underneath real-time latency constraints.

    Once you connect SHAP to a real-time fraud pipeline, you might be operating an approximation algorithm that:

    • Will depend on a background dataset you must preserve and cross at inference time
    • Produces outcomes that shift relying on nsamples and the random state
    • Takes 30 ms per pattern at a decreased configuration

    The chart beneath reveals what that post-hoc output seems to be like — a world characteristic rating computed after the prediction was already made.

    SHAP imply absolute characteristic significance throughout 100 take a look at samples, computed utilizing KernelExplainer. V14 ranks highest, in step with printed EDA on this dataset. That is helpful for world mannequin understanding — however it’s computed after the prediction, can’t be hooked up to a single real-time resolution, and can produce barely totally different values on the subsequent run resulting from Monte Carlo sampling. Picture by writer.

    Within the benchmark I ran on the Kaggle creditcard dataset [1], SHAP itself printed a warning:

    Utilizing 200 background knowledge samples might trigger slower run instances.
    Think about using shap.pattern(knowledge, Ok) or shap.kmeans(knowledge, Ok)
    to summarize the background as Ok samples.

    This highlights the trade-off between background dimension and computational value in SHAP. 30 ms at 200 background samples is the decrease sure. Bigger backgrounds, which enhance attribution stability, push the fee increased.

    The neuro-symbolic mannequin I constructed takes 0.898 ms for the prediction and rationalization collectively. There is no such thing as a flooring to fret about as a result of there isn’t a separate explainer.

    The Dataset

    All experiments use the Kaggle Credit score Card Fraud Detection dataset [1], masking 284,807 actual bank card transactions from European cardholders in September 2013, of which 492 are confirmed fraud.

    Form         : (284807, 31)
    Fraud fee    : 0.1727%
    Fraud samples : 492
    Legit samples : 284,315

    The options V1 by V28 are PCA-transformed principal parts. The unique options are anonymised and never disclosed within the dataset. Quantity is the transaction worth. Time was dropped.

    Quantity was scaled with StandardScaler. I utilized SMOTE [4] completely to the coaching set to deal with the category imbalance. The take a look at set was held on the real-world 0.17% fraud distribution all through.

    Practice dimension after SMOTE : 454,902
    Fraud fee after SMOTE : 50.00%
    Take a look at set                : 56,962 samples  |  98 confirmed fraud

    The take a look at set construction is vital: 98 fraud instances out of 56,962 samples is the precise working situation of this drawback. Any mannequin that scores properly right here is doing so on a genuinely laborious process.

    Two Fashions, One Comparability

    The Baseline: Normal Neural Community

    The baseline is a four-layer MLP with batch normalisation [5] and dropout [6], an ordinary structure for tabular fraud detection.

    class FraudNN(nn.Module):
        def __init__(self, input_dim):
            tremendous().__init__()
            self.web = nn.Sequential(
                nn.Linear(input_dim, 128), nn.BatchNorm1d(128),
                nn.ReLU(), nn.Dropout(0.3),
                nn.Linear(128, 64), nn.BatchNorm1d(64),
                nn.ReLU(), nn.Dropout(0.3),
                nn.Linear(64, 32), nn.ReLU(),
                nn.Linear(32, 1), nn.Sigmoid(),
            )

    It makes a prediction and nothing else. Explaining that prediction requires a separate SHAP name.

    The Neuro-Symbolic Mannequin: Clarification as Structure

    The neuro-symbolic mannequin has three parts working collectively: a neural spine, a symbolic rule layer, and a fusion layer that mixes each alerts.

    The neural spine learns latent representations from all 29 options. The symbolic rule layer runs six differentiable guidelines in parallel, every one computing a delicate activation between zero and one utilizing a sigmoid operate. The fusion layer takes each outputs and produces the ultimate chance.

    class NeuroSymbolicFraudDetector(nn.Module):
        """
        Enter
          |--- Neural Spine  (latent fraud representations)
          |--- Symbolic Rule Layer  (6 differentiable guidelines)
                      |
                  Fusion Layer  -->  P(fraud)  +  rule_activations
        """
        def __init__(self, input_dim, feature_names):
            tremendous().__init__()
            self.spine = nn.Sequential(
                nn.Linear(input_dim, 64), nn.BatchNorm1d(64),
                nn.ReLU(), nn.Dropout(0.2),
                nn.Linear(64, 32), nn.BatchNorm1d(32), nn.ReLU(),
            )
            self.symbolic = SymbolicRuleLayer(feature_names)
            self.fusion   = nn.Sequential(
                nn.Linear(32 + 1, 16), nn.ReLU(),  # 32 from spine + 1 from symbolic layer (weighted rule activation abstract)
                nn.Linear(16, 1), nn.Sigmoid(),
            )
    Architecture diagram showing input of 29 features splitting into two parallel paths. Left path is the Neural Backbone reducing from 64 to 32 dimensions. Right path is the Symbolic Rule Layer evaluating 6 rules with learnable thresholds. Both paths merge at the Fusion Layer which takes 32 plus 1 inputs and outputs through 16 neurons to a single probability. The output splits into P fraud and rule activations, with an annotation marking rule activations as the explanation produced here not after.
    The neuro-symbolic mannequin runs two paths in parallel on each ahead cross. The neural spine produces latent fraud representations. The symbolic rule layer evaluates six differentiable guidelines in opposition to learnable thresholds. The fusion layer combines each alerts right into a single fraud chance. The rule activations — the reason — are a pure output of this computation, not a separate step. Picture by writer.

    The six symbolic guidelines are anchored to the creditcard options with the strongest printed fraud sign [7, 8]: V14, V17, V12, V10, V4, and Quantity.

    RULE_NAMES = [
        "HIGH_AMOUNT",    # Amount exceeds threshold
        "LOW_V17",        # V17 below threshold
        "LOW_V14",        # V14 below threshold (strongest signal)
        "LOW_V12",        # V12 below threshold
        "HIGH_V10_NEG",   # V10 heavily negative
        "LOW_V4",         # V4 below threshold
    ]

    Every threshold is a learnable parameter initialised with a site prior and up to date throughout coaching through gradient descent. This implies the mannequin doesn’t simply use guidelines. It learns the place to attract the strains.

    The reason is a by-product of the ahead cross. When the symbolic layer evaluates the six guidelines, it already has every part it wants to provide a human-readable breakdown. Calling predict_with_explanation() returns the prediction, confidence, which guidelines fired, the noticed values, and the discovered thresholds, all in a single ahead cross at no additional value.

    Coaching

    Each fashions have been skilled for 40 epochs utilizing Adam [9] with weight decay and a step studying fee scheduler.

    [Baseline NN]      Epoch 40/40  practice=0.0067  val=0.0263
    [Neuro-Symbolic]   Epoch 40/40  practice=0.0030  val=0.0099

    The neuro-symbolic mannequin converges to a decrease validation loss. Each curves are clear with no signal of instability from the symbolic parts.

    Line chart showing training loss curves over 40 epochs for two models. Red line labeled Baseline NN starts around 0.07 and drops sharply before flattening near 0.007. Green line labeled Neuro-Symbolic starts at the same point, drops faster, and flattens lower near 0.003. Both curves are smooth with no instability. Dark background.
    Coaching loss over 40 epochs for each fashions on the SMOTE-balanced coaching set. The neuro-symbolic mannequin converges to a decrease ultimate coaching loss (0.003 vs 0.007), suggesting the symbolic rule layer supplies a helpful inductive bias. Each curves are clear with no indicators of instability from the differentiable rule parts. Picture by writer.

    Efficiency on the Actual-World Take a look at Set

    [Baseline NN]
                    precision  recall  f1-score  help
    Legit             0.9997   0.9989    0.9993    56864
    Fraud             0.5685   0.8469    0.6803       98
    ROC-AUC : 0.9737
    
    [Neuro-Symbolic]
                    precision  recall  f1-score  help
    Legit             0.9997   0.9988    0.9993    56864
    Fraud             0.5425   0.8469    0.6614       98
    ROC-AUC : 0.9688

    Recall on fraud is an identical: 0.8469 for each fashions. The neuro-symbolic mannequin catches precisely the identical proportion of fraud instances because the unconstrained black-box baseline.

    The precision distinction (0.5425 vs 0.5685) means the neuro-symbolic mannequin generates just a few extra false positives. Whether or not that’s acceptable depends upon the fee ratio between false positives and missed fraud in your particular deployment. The ROC-AUC hole (0.9688 vs 0.9737) is small.

    The purpose just isn’t that the neuro-symbolic mannequin is extra correct. It’s that it’s comparably correct whereas producing explanations that the baseline can’t produce in any respect.

    What the Mannequin Truly Realized

    After 40 epochs, the symbolic rule thresholds are not initialised priors. The mannequin discovered them.

    Rule               Realized Threshold                  Weight
    --------------------------------------------------------------
    HIGH_AMOUNT        Quantity > -0.011 (scaled)            0.121
    LOW_V17            V17 < -0.135                        0.081
    LOW_V14            V14 < -0.440                        0.071
    LOW_V12            V12 < -0.300                        0.078
    HIGH_V10_NEG       V10 < -0.320                        0.078
    LOW_V4             V4 < -0.251                         0.571

    The thresholds for V14, V17, V12, and V10 are in step with what printed EDA on this dataset has recognized because the strongest fraud alerts [7, 8]. The mannequin discovered them by gradient descent, not guide specification.

    However there’s something uncommon within the weight column: LOW_V4 carries 0.571 of the overall symbolic weight, whereas the opposite 5 guidelines share the remaining 0.429. One rule dominates the symbolic layer by a large margin.

    That is the end result I didn’t count on, and it’s value being direct about what it means. The rule_weights are handed by a softmax throughout coaching, which in precept prevents any single weight from collapsing to 1. However softmax doesn’t implement uniformity. It simply normalises. With adequate gradient sign, one rule can nonetheless accumulate a lot of the weight if the characteristic it covers is strongly predictive throughout the coaching distribution.

    V4 is a recognized fraud sign on this dataset [7], however this stage of dominance suggests the symbolic layer is behaving extra like a single-feature gate than a multi-rule reasoning system throughout inference. For the mannequin’s predictions this isn’t an issue, because the neural spine remains to be doing the heavy lifting on latent representations. However for the reasons, it signifies that on many transactions, the symbolic layer’s contribution is basically decided by a single rule.

    I’ll come again to what ought to be completed about this.

    The Benchmark

    The central query: how lengthy does it take to provide a proof, and does the output have the properties you want in manufacturing?

    I ran each rationalization strategies on 100 take a look at samples.

    All latency measurements have been taken on CPU (Intel i7-class machine, PyTorch, no GPU acceleration).

    SHAP (KernelExplainer, 200 background samples, nsamples=100)
        Whole : 3.00s   Per pattern : 30.0 ms
    
    Neuro-Symbolic (predict_with_explanation, single ahead cross)
        Whole : 0.0898s   Per pattern : 0.898 ms
    
    Speedup : 33x
    Bar chart comparing explanation latency per sample. SHAP Post-Hoc bar reaches 29.98 milliseconds in red. Neuro-Symbolic Real-Time bar is barely visible at 0.90 milliseconds in green. Dark background with white axis labels.
    Clarification latency measured on 100 take a look at samples from the Kaggle creditcard dataset. SHAP KernelExplainer with 200 background samples prices 29.98 ms per prediction. The neuro-symbolic mannequin produces its rationalization in 0.90 ms as a part of the identical ahead cross — no background dataset, no separate name. The visible hole just isn’t a styling alternative. That’s the precise ratio. Picture by writer.

    The latency distinction is the headline, however the consistency distinction issues as a lot in follow.

    SHAP’s KernelExplainer makes use of Monte Carlo sampling to approximate Shapley values [2]. Run it twice on the identical enter and also you get totally different numbers. The reason shifts with the random state. In a regulated surroundings the place selections should be auditable, a stochastic rationalization is a legal responsibility.

    The neuro-symbolic mannequin produces the identical rationalization each time for a similar enter. The rule activations are a deterministic operate of the enter options and the discovered weights. There may be nothing to fluctuate.

    Bar chart titled Explanation Variance Top 10 Features, with subtitle Neuro-Symbolic explanations are always deterministic. Y-axis shows variance across explanation runs scaled at 1e-5. Ten features on x-axis from V25 to V14. Salmon pink bars show varying SHAP variance values, with V11 highest around 1.02e-5 and V14 around 0.58e-5. A flat green dashed line sits at zero labeled Neuro-Symbolic variance equals zero.
    SHAP rationalization variance throughout runs for the highest 10 most vital options, measured by rerunning KernelExplainer with totally different random states. V11 reveals the very best variance at roughly 1.02e-5, V14 at 0.58e-5. The inexperienced dashed line at zero represents the neuro-symbolic mannequin, which produces an identical explanations on each run for a similar enter. For compliance logging or auditability, this distinction issues as a lot because the latency hole. Picture by writer.

    Studying a Actual Clarification

    Right here is the output from predict_with_explanation() on take a look at set transaction 840, a confirmed fraud case.

    Prediction  : FRAUD
    Confidence  : 100.0%
    
    Guidelines fired (4) -- produced INSIDE the ahead cross:
    
    Rule             Worth    Op   Threshold   Weight
    -------------------------------------------------
    LOW_V17         -0.553     <      -0.135    0.081
    LOW_V14         -0.582     <      -0.440    0.071
    LOW_V12         -0.350     <      -0.300    0.078
    HIGH_V10_NEG    -0.446     <      -0.320    0.078

    4 guidelines fired concurrently. Every line tells you which of them characteristic was concerned, the noticed worth, the discovered threshold it crossed, and the burden that rule carries within the symbolic layer. This output was not reconstructed from the prediction after the actual fact. It was produced on the identical second because the prediction, as a part of the identical computation.

    Discover that LOW_V4 (the rule with 57% of the symbolic weight) didn’t hearth on this transaction. The 4 guidelines that did hearth (V17, V14, V12, V10) all carry comparatively modest weights individually. The mannequin nonetheless predicted FRAUD at 100% confidence, which suggests the neural spine carried this resolution. The symbolic layer’s function right here was to determine the precise sample of 4 anomalous V-feature values firing collectively, and floor it as a readable rationalization.

    That is really a helpful demonstration of how the 2 parts work together. The neural spine produces the prediction. The symbolic layer produces the justification. They aren’t at all times in good alignment, and that pressure is informative.

    Bar chart titled Example Fraud Transaction Rule Activations, confidence 100 percent, rules fired 4. Six bars shown: HIGH_AMOUNT in grey around 0.30, LOW_V17 in green around 0.70, LOW_V14 in green around 0.57, LOW_V12 in green around 0.53, HIGH_V10_NEG in green around 0.56, LOW_V4 in grey around 0.37. Green bars indicate rules that fired.
    Rule activations for take a look at set transaction 840, a confirmed fraud case. 4 of the six guidelines fired: LOW_V17 with the strongest activation at roughly 0.70, adopted by LOW_V14, HIGH_V10_NEG, and LOW_V12. HIGH_AMOUNT and LOW_V4 didn’t cross their respective thresholds for this transaction regardless of LOW_V4 carrying 57% of the symbolic weight globally. This output was produced in the course of the ahead cross — not reconstructed from it. Picture by writer.

    The identical benchmark run data how incessantly every rule fired throughout fraud-predicted transactions — produced throughout inference with no separate computation. As a result of the 100-sample window displays the real-world 0.17% fraud fee, it accommodates only a few fraud predictions, so the bars are skinny. The sample turns into clearer throughout the total take a look at set, however even right here it confirms the mechanism is working.

    Horizontal bar chart titled Neuro-Symbolic Rule Fire-Rate on Fraud Transactions. Six rules listed on the y-axis: LOW_V4, HIGH_V10_NEG, LOW_V12, LOW_V14, LOW_V17, HIGH_AMOUNT. All bars appear at or near zero. Dark background with white labels and green color scheme.
    Rule fire-rate throughout fraud-predicted transactions within the 100-sample benchmark set. As a result of the benchmark attracts from the primary 100 take a look at samples on the real-world 0.17% fraud fee, only a few fraud predictions fall inside this window — which is why the bars seem empty. The fireplace-rate statistics are significant when computed throughout the total take a look at set. The chart demonstrates the mechanism works; the pattern choice for benchmarking was optimised for latency measurement, not protection. Picture by writer.

    The Full Comparability

    Dark-themed comparison table with three columns: Property, SHAP Post-Hoc in red text, and Neuro-Symbolic Real-Time in green text. Seven rows: Explanation timing shows After prediction post-hoc in red vs During prediction inline in green. Latency per sample shows 30 ms in red vs 0.90 ms in green. Speedup shows 1x baseline in red vs 33x faster in green. Consistency shows Stochastic nsamples-dependent in red vs Deterministic always identical in green. Production ready shows Too slow for real-time pipelines in red vs Sub-ms fits any latency SLA in green. Output format shows Feature attributions only in red vs Named rule firings with values in green. Extra inference cost shows Separate explainer call required in red vs Zero part of forward pass in green.
    Seven-dimension comparability of SHAP and the neuro-symbolic method measured on the Kaggle creditcard dataset. Latency and speedup values are from the 100-sample benchmark. Consistency displays the deterministic vs stochastic nature of every rationalization methodology. Efficiency metrics (precision, recall, AUC) are deliberately absent from this desk — the 2 fashions are intentionally shut on these dimensions, and the comparability right here is about what occurs after the prediction, not the prediction itself. Picture by writer.

    What Ought to Be Executed In a different way

    The V4 weight collapse. The softmax over rule_weights failed to stop one rule from accumulating 57% of the symbolic weight. The right repair is a regularisation time period throughout coaching that penalises weight focus. For instance, an entropy penalty on the softmax output that actively rewards extra uniform distributions throughout guidelines. With out this, the symbolic layer can degrade towards a single-feature gate, which weakens the interpretability argument.

    The HIGH_AMOUNT threshold. The discovered threshold for Quantity converged to -0.011 (scaled), which is successfully zero, so the rule fires for nearly any non-trivially small transaction, which suggests it contributes little or no discrimination. The issue is probably going a mix of the characteristic being genuinely much less predictive on this dataset than area instinct suggests (V options dominate within the printed literature [7, 8]) and the initialisation pulling the edge to a low-information area. A bounded threshold initialisation or a discovered gate that may suppress low-utility guidelines would deal with this extra cleanly.

    Determination threshold tuning. Each fashions have been evaluated at a 0.5 threshold. In follow, the suitable threshold depends upon the fee ratio between false positives and missed fraud within the deployment context. That is particularly vital for the neuro-symbolic mannequin the place precision is barely decrease. A threshold shift towards 0.6 or 0.65 would recuperate precision at the price of some recall. This trade-off ought to be made intentionally, not left on the default.

    The place This Matches

    That is the fifth article in a collection on neuro-symbolic approaches to fraud detection. The sooner work covers the foundations:

    This text provides a fifth dimension: the explainability structure itself. Not simply whether or not the mannequin will be defined, however whether or not the reason will be produced on the velocity and consistency that manufacturing techniques really require.

    SHAP stays the suitable software for mannequin debugging, characteristic choice, and exploratory evaluation. What this experiment reveals is that when rationalization must be a part of the choice (logged in actual time, auditable per transaction, out there to downstream techniques), the structure has to alter. Put up-hoc strategies are too sluggish and too inconsistent for that function.

    The neuro-symbolic method trades a small quantity of precision for a proof that’s deterministic, fast, and structurally inseparable from the prediction itself. Whether or not that trade-off is worth it depends upon your system. The numbers are right here that will help you resolve.

    Code: https://github.com/Emmimal/neuro-symbolic-xai-fraud/

    Disclosure

    This text relies on unbiased experiments utilizing publicly out there knowledge (Kaggle Credit score Card Fraud dataset) and open-source instruments. No proprietary datasets, firm assets, or confidential info have been used. The outcomes and code are totally reproducible as described, and the GitHub repository accommodates the whole implementation. The views and conclusions expressed listed here are my very own and don’t signify any employer or group.

    References

    [1] ULB Machine Studying Group. Credit score Card Fraud Detection. Kaggle, 2018. Accessible at: https://www.kaggle.com/datasets/mlg-ulb/creditcardfraud (Dataset launched underneath the Open Database License. Unique analysis: Dal Pozzolo, A., Caelen, O., Johnson, R. A., & Bontempi, G., 2015.)

    [2] Lundberg, S. M., & Lee, S.-I. (2017). A unified method to deciphering mannequin predictions. Advances in Neural Info Processing Techniques, 30. Accessible at: https://arxiv.org/abs/1705.07874

    [3] Shapley, L. S. (1953). A price for n-person video games. In H. W. Kuhn & A. W. Tucker (Eds.), Contributions to the Principle of Video games (Vol. 2, pp. 307–317). Princeton College Press. https://doi.org/10.1515/9781400881970-018

    [4] Chawla, N. V., Bowyer, Ok. W., Corridor, L. O., & Kegelmeyer, W. P. (2002). SMOTE: Artificial minority over-sampling approach. Journal of Synthetic Intelligence Analysis, 16, 321–357. Accessible at: https://arxiv.org/abs/1106.1813

    [5] Ioffe, S., & Szegedy, C. (2015). Batch normalization: Accelerating deep community coaching by decreasing inside covariate shift. Proceedings of the thirty second Worldwide Convention on Machine Studying (ICML). Accessible at: https://arxiv.org/abs/1502.03167

    [6] Srivastava, N., Hinton, G., Krizhevsky, A., Sutskever, I., & Salakhutdinov, R. (2014). Dropout: A easy option to forestall neural networks from overfitting. Journal of Machine Studying Analysis, 15(1), 1929–1958. Accessible at: https://jmlr.org/papers/v15/srivastava14a.html

    [7] Dal Pozzolo, A., Caelen, O., Le Borgne, Y.-A., Waterschoot, S., & Bontempi, G. (2014). Realized classes in bank card fraud detection from a practitioner perspective. Professional Techniques with Purposes, 41(10), 4915–4928. https://doi.org/10.1016/j.eswa.2014.02.026

    [8] Carcillo, F., Dal Pozzolo, A., Le Borgne, Y.-A., Caelen, O., Mazzer, Y., & Bontempi, G. (2018). SCARFF: A scalable framework for streaming bank card fraud detection with Spark. Info Fusion, 41, 182–194. https://doi.org/10.1016/j.inffus.2017.09.005

    [9] Kingma, D. P., & Ba, J. (2015). Adam: A way for stochastic optimization. Proceedings of the third Worldwide Convention on Studying Representations (ICLR). Accessible at: https://arxiv.org/abs/1412.6980



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Editor Times Featured
    • Website

    Related Posts

    Escaping the Valley of Choice in BI

    June 2, 2026

    Ensuring Data Integrity with Cryptographic Hashing and the Ethereum Blockchain

    June 1, 2026

    RAG Is Not Machine Learning, and the ML Toolkit Solves the Wrong Problem

    June 1, 2026

    How to Combine Claude Code and Codex for Maximum Coding Power

    June 1, 2026

    It’s the Lessons We Learned Along the Way. Or, Is It?

    June 1, 2026

    Proxy-Pointer RAG: Eliminating Wasteful Entity & Relations Extraction in Knowledge Graphs

    May 31, 2026

    Comments are closed.

    Editors Picks

    How small businesses can leverage AI

    June 2, 2026

    Robots-Blog | Humanoide Robotik aus Deutschland: igus bringt neuen Serviceroboter auf den Markt

    June 2, 2026

    GM reimagines Hummer off-roader with California ideas unit

    June 2, 2026

    London’s DEScycle secures over €10 million in grant funding to scale critical metals recovery platform

    June 2, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    About Us
    About Us

    Welcome to Times Featured, an AI-driven entrepreneurship growth engine that is transforming the future of work, bridging the digital divide and encouraging younger community inclusion in the 4th Industrial Revolution, and nurturing new market leaders.

    Empowering the growth of profiles, leaders, entrepreneurs businesses, and startups on international landscape.

    Asia-Middle East-Europe-North America-Australia-Africa

    Facebook LinkedIn WhatsApp
    Featured Picks

    Volkswagen California van life brand kicks off with new mini-camper

    August 31, 2024

    TikTok blocks searches for extreme thinness ‘skinnytok’ hashtag

    June 4, 2025

    The firms looking to destroy harmful ‘forever chemicals’

    August 19, 2025
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    Copyright © 2024 Timesfeatured.com IP Limited. All Rights.
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us

    Type above and press Enter to search. Press Esc to cancel.