File size: 1,116 Bytes
2ed2129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import numpy as np
import faiss
import logging

logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)

def test_faiss():
    try:
        # Create a small test index
        dimension = 64
        nb = 100
        
        # Generate random data
        xb = np.random.random((nb, dimension)).astype('float32')
        
        # Create index
        index = faiss.IndexFlatL2(dimension)
        
        # Add vectors
        index.add(xb)
        
        # Test search
        k = 5
        xq = np.random.random((1, dimension)).astype('float32')
        D, I = index.search(xq, k)
        
        logger.info("FAISS test successful!")
        logger.info(f"Found {k} nearest neighbors")
        
        return True
        
    except Exception as e:
        logger.error(f"FAISS test failed: {str(e)}")
        return False
    
import torch

def test_torch():
    try:
        x = torch.rand(5, 3)
        print("PyTorch is working correctly. Tensor:", x)
    except Exception as e:
        print("Error with PyTorch:", e)


if __name__ == "__main__":
    test_faiss()
    test_torch()