faiss-napi
TypeScript icon, indicating that this package has built-in type declarations

0.10.1 • Public • Published

faiss-napi

NPM Version Node Version Unit Test License Documentation

faiss-napi provides Node/Bun/Deno NAPI bindings for faiss

This package is a fork of the original faiss-node with a focus on advanced features & performance.

Installation

$ npm install faiss-napi

Documentation

Usage

const { IndexFlatL2, Index, IndexFlatIP, IndexHNSW, MetricType } = require('faiss-napi');

const dimension = 2;
const index = new IndexFlatL2(dimension);

console.log(index.dims); // 2
console.log(index.isTrained); // true
console.log(index.ntotal); // 0

// inserting data into index.
index.add([1, 0]);
index.add([1, 2]);
index.add([1, 3]);
index.add([1, 1]);

console.log(index.ntotal); // 4

const k = 4;
const results = index.search([1, 0], k);
console.log(results.labels); // [ 0n, 3n, 1n, 2n ]
console.log(results.distances); // [ 0, 1, 4, 9 ]

// Save index
const fname = 'faiss.index';
index.write(fname);

// Load saved index
const index_loaded = IndexFlatL2.read(fname);
console.log(index_loaded.dims); //2
console.log(index_loaded.ntotal); //4
const results1 = index_loaded.search([1, 1], 4);
console.log(results1.labels); // [ 3n, 0n, 1n, 2n ]
console.log(results1.distances); // [ 0, 1, 1, 4 ]

// Merge index
const newIndex = new IndexFlatL2(dimension);
newIndex.mergeFrom(index);
console.log(newIndex.ntotal); // 4

// Remove items
console.log(newIndex.search([1, 2], 1)); // { distances: [ 0 ], labels: [ 1n ] }
const removedCount = newIndex.removeIds([0]);
console.log(removedCount); // 1
console.log(newIndex.ntotal); // 3
console.log(newIndex.search([1, 2], 1)); // { distances: [ 0 ], labels: [ 0n ] }

// IndexFlatIP
const ipIndex = new IndexFlatIP(2);
ipIndex.add([1, 0]);

// Serialize an index
const index_buf = newIndex.toBuffer();
const deserializedIndex = Index.fromBuffer(index_buf);
console.log(deserializedIndex.ntotal); // 3

// Factory index
const hnswIndex = Index.fromFactory(2, 'HNSW32,Flat', MetricType.METRIC_INNER_PRODUCT);
// same as:
// const hnswIndex = new IndexHNSW(2, 32, MetricType.METRIC_INNER_PRODUCT)
const x = [1, 0, 0, 1];
hnswIndex.train(x);
hnswIndex.add(x);

// IDMap'd index
const idIndex = new IndexFlatL2(2).toIDMap2();
const vectors = [[1, 0], [0, 1]];
idIndex.addWithIds(vectors.flat(), [100n, 200n]);
// reconstruct vectors
expect(idIndex.reconstruct(idIndex.ids[0])).toEqual(vectors[0]);
expect(idIndex.reconstructBatch(idIndex.ids)).toEqual(vectors.flat());

// IVF
const ivf = new IndexIVFFlat(new IndexFlatL2(2), 2, 2);
const x = Array.from({ length: 400 }, () => Math.random());
const y = Array.from({ length: 200 }, (_, i) => i);
const trained = new IndexIVFFlat(new IndexFlatL2(2), 2, 2);
trained.train(x.slice(0, 200));
trained.addWithIds(x.slice(0, 200), y.slice(0, 100));
trained.write('trained.ivf');
const untrained = new IndexIVFFlat(new IndexFlatL2(2), 2, 2);
untrained.addWithIds(x.slice(200), y.slice(100));
untrained.write('untrained.ivf');
IndexIVFFlat.mergeOnDisk(['trained.ivf', 'untrained.ivf'], 'merged.ivf', 'merged.ivfdata');

License

MIT

Package Sidebar

Install

npm i faiss-napi

Weekly Downloads

35

Version

0.10.1

License

MIT

Unpacked Size

97.5 kB

Total Files

17

Last publish

Collaborators

  • asilvas