sphere-cli 0.2.1 → 0.2.3

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 CHANGED
@@ -162,7 +162,7 @@ Options:
162
162
  -n, --rows INT Number of synthetic rows (default: same as input)
163
163
  -k INT Synthesis depth (default: 2)
164
164
  --seed INT Random seed for reproducibility
165
- --mix-prob FLOAT Mixture probability 0–1 (default: 0.75)
165
+ --mix-prob FLOAT Privacy/utility trade-off, 0–1 (default: 0.75)
166
166
  --json Machine-readable JSON output
167
167
  ```
168
168
 
@@ -195,7 +195,7 @@ Options:
195
195
  --json Machine-readable JSON output
196
196
  ```
197
197
 
198
- Produces a self-contained HTML certificate with fidelity and privacy scores, dataset metadata, and generation provenance. Generation parameters (`k`, `seed`, `theta`, etc.) are loaded automatically from the `.sphere.json` sidecar; pass flags explicitly to override.
198
+ Produces a self-contained HTML certificate with fidelity and privacy scores, dataset metadata, and generation provenance. Generation parameters are loaded automatically from the `.sphere.json` sidecar; pass flags explicitly to override.
199
199
 
200
200
  ---
201
201
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sphere-cli",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "SPHERE CLI — synthetic data generation, evaluation, and certification (sealed native binary)",
5
5
  "keywords": [
6
6
  "synthetic-data",
@@ -24,7 +24,7 @@ const VERSION = PKG.version;
24
24
  const REPO = 'statzihuai/sphere-cli';
25
25
  // Binary release tag — decoupled from the npm package version so JS-only patch
26
26
  // releases reuse the same prebuilt/notarized binaries without re-uploading them.
27
- const BINARY_RELEASE = 'v0.2.0';
27
+ const BINARY_RELEASE = 'v0.2.3';
28
28
 
29
29
  const PLATFORM = process.platform; // 'darwin' | 'linux'
30
30
  const ARCH = process.arch; // 'arm64' | 'x64'