embrix 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/embrix)
|
|
4
4
|
[](https://www.npmjs.com/package/embrix)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](https://
|
|
6
|
+
[](https://tahsinkoc.vercel.app/papers/embrix-nodejs-embedding)
|
|
7
7
|
|
|
8
8
|
Production-ready local text embeddings using `@xenova/transformers`. Zero external API calls, runs entirely in Node.js.
|
|
9
9
|
|
|
@@ -201,6 +201,10 @@ npm run benchmark -- --batch-size 50
|
|
|
201
201
|
npm run benchmark -- --help
|
|
202
202
|
```
|
|
203
203
|
|
|
204
|
+
## Experimental Benchmark Results
|
|
205
|
+
|
|
206
|
+
For comprehensive experimental benchmark results, including performance comparisons across different models and configurations, see the [test-embrix-experimental](https://github.com/tahsinkoc/test-embrix-experimental) repository.
|
|
207
|
+
|
|
204
208
|
## Example Output
|
|
205
209
|
|
|
206
210
|
```
|
|
@@ -276,11 +280,11 @@ Only `@xenova/transformers` is required. This keeps the package:
|
|
|
276
280
|
If you use embrix in your research, please cite:
|
|
277
281
|
|
|
278
282
|
```bibtex
|
|
279
|
-
@software{
|
|
283
|
+
@software{embrix2026,
|
|
280
284
|
title = {embrix: Production-Ready Local Text Embeddings for Node.js},
|
|
281
|
-
author = {
|
|
282
|
-
year = {
|
|
283
|
-
url = {https://github.com/
|
|
285
|
+
author = {Tahsin Özgür Koç},
|
|
286
|
+
year = {2026},
|
|
287
|
+
url = {https://github.com/tahsinkoc/embrix}
|
|
284
288
|
}
|
|
285
289
|
```
|
|
286
290
|
|
package/package.json
CHANGED