Neuron Conductance is an attribution method that decomposes a neural network's prediction to measure the contribution of an individual hidden neuron. It extends Integrated Gradients by computing the flow of the gradient of the output with respect to a specific neuron, integrated along a straight-line path from a baseline input to the actual input. This provides a score quantifying how much that neuron's activation influences the final prediction.
Glossary
Neuron Conductance

What is Neuron Conductance?
Neuron Conductance extends Integrated Gradients to quantify the importance of a specific hidden neuron by measuring the flow of the model's gradient through that neuron along the integration path.
Unlike input-level feature attribution, conductance operates on internal network units, enabling mechanistic interpretability. By summing the conductance of all neurons in a layer, one recovers the layer's total attribution, satisfying the completeness axiom. This granular view helps researchers identify specific circuits and functional units responsible for a model's decision, distinguishing between neurons that are merely correlated with a prediction and those that causally drive it.
Key Properties of Neuron Conductance
Neuron Conductance extends Integrated Gradients to measure the importance of a specific hidden neuron by computing the flow of the gradient through that neuron along the integration path. These cards detail its core properties, mathematical formulation, and relationship to other attribution methods.
Mathematical Definition
Neuron Conductance quantifies how much a hidden neuron contributes to the model's output change from a baseline. It is defined as:
- Formula: The integral of the partial derivative of the output with respect to the neuron, multiplied by the neuron's gradient with respect to the input, along the straight-line path from baseline to input.
- Decomposition: The sum of conductance scores across all neurons in a layer equals the total Integrated Gradients attribution for that layer.
- Path Integral: Like Integrated Gradients, it satisfies the completeness axiom, ensuring attributions sum to the output difference.
Relationship to Integrated Gradients
Conductance is a direct extension of Integrated Gradients that shifts the focus from input features to hidden neurons:
- Input Attribution: Integrated Gradients computes the importance of each input feature directly.
- Neuron Attribution: Conductance computes the importance of each hidden neuron by measuring the gradient flow through it.
- Layer-wise Summation: Summing conductance across all neurons in a layer recovers the layer's total attribution.
- Hierarchical Analysis: Enables debugging at multiple levels—from individual neurons to entire layers—providing a granular view of internal decision-making.
Completeness and Conservation
Conductance inherits the completeness axiom from Integrated Gradients, ensuring mathematical consistency:
- Conservation Property: The sum of conductance values for all neurons in a network equals the difference between the model's output at the input and the baseline.
- No Attribution Leakage: Every unit of output change is fully accounted for by the neurons that contributed to it.
- Auditability: This property makes conductance suitable for compliance contexts where a complete decomposition of the prediction is required for regulatory review.
Conductance vs. Activation Analysis
Conductance differs fundamentally from methods that rely solely on neuron activations:
- Activation Magnitude: A neuron may have a high activation value but contribute little to the final prediction if its downstream weights are near zero.
- Gradient Flow: Conductance captures the actual influence of the neuron on the output by combining activation with gradient information.
- Saturation Handling: Unlike raw gradient methods, conductance avoids the gradient saturation problem by integrating along a path, ensuring neurons that strongly activate the correct class are not incorrectly assigned zero importance.
Layer-Wise Debugging
Conductance enables systematic debugging of deep networks by isolating problematic layers:
- Bottleneck Identification: Layers with unexpectedly low total conductance may indicate vanishing gradients or dead neurons.
- Redundancy Detection: Layers where many neurons have near-zero conductance suggest over-parameterization and potential for pruning.
- Concept Attribution: When combined with Concept Activation Vectors, conductance can measure how much a neuron contributes to a high-level concept, bridging mechanistic and concept-based interpretability.
- Architecture Comparison: Engineers can compare conductance distributions across different model architectures to understand why one design outperforms another.
Computational Considerations
Practical implementation of conductance requires careful numerical approximation:
- Riemann Approximation: The path integral is approximated by summing gradients at discrete steps along the straight-line path, typically 20-300 steps.
- Baseline Selection: Like Integrated Gradients, the choice of baseline (e.g., zero embedding, black image) significantly impacts the explanation and must be chosen to represent the absence of signal.
- Computational Cost: Conductance requires a backward pass for each integration step, making it more expensive than single-pass methods like Gradient × Input.
- Batching: Multiple steps can be batched for efficient GPU computation, reducing wall-clock time.
Frequently Asked Questions
Clear, technically precise answers to the most common questions about neuron conductance, its relationship to Integrated Gradients, and its role in auditing the internal logic of deep neural networks.
Neuron conductance is an attribution method that quantifies the importance of a specific hidden neuron to a model's prediction by measuring the flow of the gradient through that neuron along the integration path. It is a direct extension of Integrated Gradients that shifts the focus from input features to internal network components. The mechanism works by decomposing the total attribution of an input feature into the contributions of individual hidden neurons. For a given neuron y, its conductance is calculated by integrating the partial derivative of the model's output F with respect to y along a straight-line path from a baseline input x' to the target input x. The formula is: Conductance(y) = (x - x') * ∫ (∂F(α) / ∂y) * (∂y(α) / ∂x) dα, where α varies from 0 to 1. This effectively measures how much the neuron's sensitivity to the input contributes to the final output change, providing a granular view of the network's internal decision-making process.
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
Explore the foundational and adjacent concepts that define how neuron conductance fits into the broader landscape of neural network interpretability.
Integrated Gradients
The axiomatic attribution method that neuron conductance directly extends. It computes feature importance by accumulating gradients along a straight-line path from a baseline to the input.
- Satisfies Completeness and Sensitivity-n axioms
- Requires a meaningful baseline (e.g., black image, zero embedding)
- Neuron conductance applies this path integral concept to hidden units rather than input features
Conductance
The core metric quantifying the flow of attribution through a specific hidden neuron. It decomposes a feature's importance score by the neuron's contribution along the integration path.
- Measures how much a neuron amplifies or suppresses the gradient signal
- Summing conductance over all neurons recovers the Integrated Gradients value
- Enables neuron-level debugging of internal representations
Attribution Flow
A theoretical framework viewing relevance propagation as a conservative flow through the network graph. Neuron conductance operationalizes this by tracking gradient flow through individual neurons.
- Satisfies conservation laws similar to physical systems
- Unifies decomposition methods like LRP and DeepLIFT
- Provides a rigorous mathematical basis for neuron importance
Layer-wise Relevance Propagation
A decomposition technique that redistributes the prediction score backwards using conservation rules. Unlike conductance, LRP uses discrete propagation rules rather than path integrals.
- Alpha-Beta rule separates positive and negative contributions
- Does not require a baseline input
- Often produces sharper, less noisy saliency maps than gradient methods
Gradient × Input
A simple attribution method that multiplies the gradient by the input value. Neuron conductance generalizes this by considering the full path integral rather than a single point estimate.
- Equivalent to a first-order Taylor approximation
- Prone to gradient saturation issues in deep networks
- Serves as a baseline for evaluating more sophisticated methods
Shattered Gradient Problem
A phenomenon where gradients with respect to inputs resemble white noise, providing no coherent saliency map. Neuron conductance helps diagnose this by identifying which hidden neurons contribute to the noise.
- Caused by highly non-linear loss surfaces
- SmoothGrad and VarGrad mitigate this through averaging
- Understanding neuron-level flow reveals where interpretability breaks down

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us