synthbench 0.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 +13 -0
- package/index.js +1 -0
- package/package.json +11 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# synthbench
|
|
2
|
+
|
|
3
|
+
This npm name is reserved by [SynthBench](https://synthbench.org) — the open
|
|
4
|
+
benchmark for synthetic survey respondent quality, by the team behind
|
|
5
|
+
[Althing](https://althing.dev).
|
|
6
|
+
|
|
7
|
+
SynthBench is a Python project; install the harness from PyPI:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install synthbench-eval
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Note: the PyPI name `synthbench` belongs to an unrelated project.
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = { note: "SynthBench is a Python project — pip install synthbench-eval. See https://synthbench.org" };
|
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "synthbench",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Namespace reservation for SynthBench — the open benchmark for synthetic survey respondent quality (synthbench.org). The Python harness is on PyPI: pip install synthbench-eval",
|
|
5
|
+
"homepage": "https://synthbench.org",
|
|
6
|
+
"repository": { "type": "git", "url": "git+https://github.com/DataViking-Tech/SynthBench.git" },
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"main": "index.js",
|
|
9
|
+
"files": ["index.js", "README.md"],
|
|
10
|
+
"keywords": ["synthbench", "benchmark", "synthetic-research"]
|
|
11
|
+
}
|