Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions isildur/tests/test_isildur.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,10 @@ def test_assoc_memory():

def test_spike_hdc():
"""Test SpikeHDC encoding."""
# Seeded: with unseeded 10-dim random inputs, the two spike vectors
# occasionally correlate by chance and their HVs exceed the 0.5
# similarity bound (flaked on CI 2026-06-11).
torch.manual_seed(42)
input_size = 10
dim = 500
encoder = SpikeHDC(input_size, dim)
Expand Down
Loading