Crates.io | signature-rs-bin |
lib.rs | signature-rs-bin |
version | 0.1.0 |
created_at | 2025-08-20 13:06:52.990446+00 |
updated_at | 2025-08-20 13:06:52.990446+00 |
description | CLI Application that computes the log signature from path data |
homepage | |
repository | https://github.com/ChosunOne/signature-rs |
max_upload_size | |
id | 1803374 |
size | 153,608 |
A command-line tool for computing log signatures from path data in various formats.
This binary provides a practical interface to the signature-rs library ecosystem, enabling users to:
signature-rs-bin [OPTIONS] -p <PATH>
-d <NUM_DIMENSIONS>
: Number of dimensions in the path (auto-detected if not specified)-k <MAX_DEGREE>
: Maximum degree for log signature computation (default: 3)-t <DATA_TYPE>
: Coefficient data type - f32
or f64
(default: f32)-p <PATH>
: Input file path containing the path data-o <OUTPUT>
: Output file path (prints to stdout if not specified)-f <OUTPUT_TYPE>
: Output format - csv
, json
, jsonl
, or parquet
(default: csv)# Compute log signature from CSV path data, output to JSON
signature-rs-bin -p path_data.csv -o results.json -f json -k 5
# Use 64-bit precision with Parquet output
signature-rs-bin -p data.parquet -t f64 -o output.parquet -f parquet