Exemplo n.º 1
0
def test_lsh_remove():
    lsh = LSH(1)
    a = torch.zeros(2)
    b = torch.ones(2)
    lsh.add("a", a)
    lsh.add("b", b)
    assert lsh.nearby("a") == {"b"}
    lsh.remove("b")
    assert lsh.nearby("a") == set()
Exemplo n.º 2
0
def test_lsh_remove():
    lsh = LSH(1)
    a = torch.zeros(2)
    b = torch.ones(2)
    lsh.add('a', a)
    lsh.add('b', b)
    assert lsh.nearby('a') == {'b'}
    lsh.remove('b')
    assert lsh.nearby('a') == set()
Exemplo n.º 3
0
def test_lsh_overwrite():
    lsh = LSH(1)
    a = torch.zeros(2)
    b = torch.ones(2)
    lsh.add('a', a)
    lsh.add('b', b)
    assert lsh.nearby('a') == {'b'}
    b = torch.ones(2) * 4
    lsh.add('b', b)
    assert lsh.nearby('a') == set()
Exemplo n.º 4
0
def test_lsh_overwrite():
    lsh = LSH(1)
    a = torch.zeros(2)
    b = torch.ones(2)
    lsh.add("a", a)
    lsh.add("b", b)
    assert lsh.nearby("a") == {"b"}
    b = torch.ones(2) * 4
    lsh.add("b", b)
    assert lsh.nearby("a") == set()
Exemplo n.º 5
0
def test_lsh_hash_nearby(scale):
    k = 5
    lsh = LSH(scale)
    a = -2 * scale + torch.rand(k) * scale * 0.49
    b = -1 * scale + torch.rand(k) * scale * 0.49
    c = torch.rand(k) * scale * 0.49
    d = scale + torch.rand(k) * scale * 0.49
    e = 2 * scale + torch.rand(k) * scale * 0.49
    f = 4 * scale + torch.rand(k) * scale * 0.49

    assert_equal(lsh._hash(a), (-2,) * k)
    assert_equal(lsh._hash(b), (-1,) * k)
    assert_equal(lsh._hash(c), (0,) * k)
    assert_equal(lsh._hash(d), (1,) * k)
    assert_equal(lsh._hash(e), (2,) * k)
    assert_equal(lsh._hash(f), (4,) * k)

    lsh.add('a', a)
    lsh.add('b', b)
    lsh.add('c', c)
    lsh.add('d', d)
    lsh.add('e', e)
    lsh.add('f', f)

    assert lsh.nearby('a') == {'b'}
    assert lsh.nearby('b') == {'a', 'c'}
    assert lsh.nearby('c') == {'b', 'd'}
    assert lsh.nearby('d') == {'c', 'e'}
    assert lsh.nearby('e') == {'d'}
    assert lsh.nearby('f') == set()
Exemplo n.º 6
0
def test_lsh_add(scale):
    lsh = LSH(scale)
    a = torch.rand(10)
    lsh.add('a', a)
    assert lsh._hash_to_key[lsh._key_to_hash['a']] == {'a'}
Exemplo n.º 7
0
def test_lsh_init(scale):
    with pytest.raises(ValueError):
        LSH(scale)
Exemplo n.º 8
0
def test_lsh_hash_nearby(scale):
    k = 5
    lsh = LSH(scale)
    a = -2 * scale + torch.rand(k) * scale * 0.49
    b = -1 * scale + torch.rand(k) * scale * 0.49
    c = torch.rand(k) * scale * 0.49
    d = scale + torch.rand(k) * scale * 0.49
    e = 2 * scale + torch.rand(k) * scale * 0.49
    f = 4 * scale + torch.rand(k) * scale * 0.49

    assert_equal(lsh._hash(a), (-2,) * k)
    assert_equal(lsh._hash(b), (-1,) * k)
    assert_equal(lsh._hash(c), (0,) * k)
    assert_equal(lsh._hash(d), (1,) * k)
    assert_equal(lsh._hash(e), (2,) * k)
    assert_equal(lsh._hash(f), (4,) * k)

    lsh.add("a", a)
    lsh.add("b", b)
    lsh.add("c", c)
    lsh.add("d", d)
    lsh.add("e", e)
    lsh.add("f", f)

    assert lsh.nearby("a") == {"b"}
    assert lsh.nearby("b") == {"a", "c"}
    assert lsh.nearby("c") == {"b", "d"}
    assert lsh.nearby("d") == {"c", "e"}
    assert lsh.nearby("e") == {"d"}
    assert lsh.nearby("f") == set()
Exemplo n.º 9
0
def test_lsh_add(scale):
    lsh = LSH(scale)
    a = torch.rand(10)
    lsh.add("a", a)
    assert lsh._hash_to_key[lsh._key_to_hash["a"]] == {"a"}