Feder is built for visualize anns index files, so that we can have a better understanding of anns and high dimensional vectors. so far, we are focusing on Faiss index and HNSW index, we will cover more index types later.
#install
npm install @zilliz/Feder
import { Feder } from '@zilliz/Feder';
const feder = new Feder({
file: 'faiss_file', // file path
type: 'faiss', // faiss | hnsw
domContainer, // attach dom to render
});
// you can call search to visualize the search process
feder.search(target, params);
// or reset to initialize state
feder.reset();
TBD
TBD
TBD
TBD
# install dependencies
npm install
# create build
npm run build
# test
npm run test