mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-06-01 14:39:33 +00:00
Major additions: - ruvector-gnn: Complete GNN implementation with RuvectorLayer, multi-head attention, GRU cell - Tensor compression: 5-tier adaptive compression (f32→f16→PQ8→PQ4→Binary, 2-32x) - Differentiable search: Soft attention k-NN with gradient flow - Training: InfoNCE contrastive loss, SGD optimizer - Query API: RuvectorQuery, QueryResult, SubGraph types - MmapManager: Memory-mapped embeddings with gradient accumulation - Tensor operations: Full tensor math library Bindings: - ruvector-gnn-wasm: Full WASM bindings for browser - ruvector-gnn-node: napi-rs bindings for Node.js Fixes: - WASM compatibility for ruvector-graph (conditional compilation) - Feature flags for storage/hnsw modules Updated README with GNN architecture overview and tutorials
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "@ruvector/gnn",
|
|
"version": "0.1.1",
|
|
"description": "Graph Neural Network capabilities for Ruvector - Node.js bindings",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"napi": {
|
|
"name": "ruvector-gnn",
|
|
"triples": {
|
|
"defaults": true,
|
|
"additional": [
|
|
"x86_64-unknown-linux-musl",
|
|
"aarch64-unknown-linux-gnu",
|
|
"aarch64-unknown-linux-musl",
|
|
"aarch64-apple-darwin",
|
|
"x86_64-pc-windows-msvc"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"artifacts": "napi artifacts",
|
|
"build": "napi build --platform --release",
|
|
"build:debug": "napi build --platform",
|
|
"prepublishOnly": "napi prepublish -t npm",
|
|
"test": "node --test test/*.test.js",
|
|
"version": "napi version"
|
|
},
|
|
"keywords": [
|
|
"ruvector",
|
|
"gnn",
|
|
"graph-neural-network",
|
|
"machine-learning",
|
|
"vector-database",
|
|
"hnsw",
|
|
"napi-rs"
|
|
],
|
|
"author": "Ruvector Team",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/ruvector"
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^2.16.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "public"
|
|
}
|
|
}
|