Class EdgeStats
- Namespace
- DotFly.Core.Checkpoints
- Assembly
- DotFly.Core.dll
Structural edge counts of the selected neurons in the source data. Edges and
Contacts count every (pre, post) pair among included neurons; the checkpoint
itself keeps only pairs whose sign is non-zero (the rest would contribute g += 0).
public sealed record EdgeStats : IEquatable<EdgeStats>
- Inheritance
-
EdgeStats
- Implements
- Inherited Members
Constructors
EdgeStats(long, long, long, long)
Structural edge counts of the selected neurons in the source data. Edges and
Contacts count every (pre, post) pair among included neurons; the checkpoint
itself keeps only pairs whose sign is non-zero (the rest would contribute g += 0).
public EdgeStats(long Edges, long Contacts, long ZeroSignEdges, long ZeroSignContacts)
Parameters
EdgeslongDirected (pre, post) pairs among included neurons.
ContactslongSum of contact counts over those pairs.
ZeroSignEdgeslongPairs dropped because the presynaptic transmitter maps to sign 0.
ZeroSignContactslongContacts on those dropped pairs.
Properties
Contacts
Sum of contact counts over those pairs.
public long Contacts { get; init; }
Property Value
Edges
Directed (pre, post) pairs among included neurons.
public long Edges { get; init; }
Property Value
ZeroSignContacts
Contacts on those dropped pairs.
public long ZeroSignContacts { get; init; }
Property Value
ZeroSignEdges
Pairs dropped because the presynaptic transmitter maps to sign 0.
public long ZeroSignEdges { get; init; }