sphere-cli 0.2.2 → 0.2.4
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 +2 -2
- package/package.json +1 -1
- package/scripts/postinstall.js +1 -1
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
|
|
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
|
|
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
package/scripts/postinstall.js
CHANGED
|
@@ -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.
|
|
27
|
+
const BINARY_RELEASE = 'v0.2.4';
|
|
28
28
|
|
|
29
29
|
const PLATFORM = process.platform; // 'darwin' | 'linux'
|
|
30
30
|
const ARCH = process.arch; // 'arm64' | 'x64'
|