You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Navigating into any example directory and running `uv sync` or `uv run` will automatically set up a isolated Python virtual environment, build the local `deglib` C++ bindings, and install all required dependencies:
29
+
30
+
```bash
31
+
cd examples/paper_reproduction
32
+
uv sync
33
+
```
34
+
35
+
## Projects
36
+
37
+
-[`paper_reproduction`](./paper_reproduction/): Reproduce DEG paper search benchmarks (Recall vs QPS) on datasets mentioned in the root `readme.md` (`Audio`, `Enron`, `SIFT1M`, `DEEP1M`, `GloVe-100`).
This example project demonstrates how to download paper datasets from `readme.md`, build a DEG graph with preset parameters, run search queries, measure Recall vs. QPS (Queries Per Second), and display the results plot interactively.
4
+
5
+
## Available Datasets
6
+
7
+
-`audio` (192D, 53k base vectors, L2 distance)
8
+
-`enron` (1369D, 94k base vectors, L2 distance)
9
+
-`sift1m` (128D, 1M base vectors, L2 distance)
10
+
-`deep1m` (96D, 1M base vectors, L2 distance)
11
+
-`glove-100` (100D, 1.18M base vectors, Angular / InnerProduct distance)
0 commit comments