Skip to main content

A minimal dataset versioning system for text data with a focus on reproducibility.

Project description

Marco Dataset Versioning System

A minimal dataset versioning system for text data with a strong focus on reproducibility and transparency. Treat your text datasets like code โ€” immutable, versioned, reproducible, and explainable.

Marco acts as a lightweight Python library, meaning you can initialize it in any machine learning project folder to safely version and preprocess your datasets without altering your original files.


๐Ÿš€ Installation (Linux / macOS)

On modern Linux environments (Arch Linux, Ubuntu 23.04+), Python packages must be installed inside a Virtual Environment (PEP 668) to prevent conflicts with system packages.

Follow these steps to safely install Marco into your ML project:

  1. Navigate to your ML project folder (e.g. your bag-of-words project):

    cd ~/projects/my-bag-of-words-model
    
  2. Create and activate a Python Virtual Environment:

    # Create a virtual environment named 'venv'
    python3 -m venv venv
    
    # Activate it (required every time you open a new terminal in this folder)
    source venv/bin/activate
    

    You should now see (venv) at the start of your terminal prompt.

  3. Install Marco:

    pip install marco-dvcs
    

๐Ÿ› ๏ธ Usage Guide

Once marco is installed in your virtual environment, you have access to the full CLI.

1. Initialize a Repository

Initialize Marco tracking in your current directory. This creates a .marco/ data versioning environment specific to that project.

marco init

2. Create an Immutable Version

Upload a text/CSV/TSV dataset to create an immutable version. Marco computes a cryptographically secure SHA-256 hash from the raw data combined with the preprocessing configuration.

Interactive Mode โ€” if you don't supply a config file, Marco guides you through building the preprocessing pipeline (lowercasing, tokenization, stopword removal, deduplication):

marco upload my_dataset.csv -t v1-raw

Config Mode โ€” supply a JSON config directly:

marco upload my_dataset.csv -c my_config.json -t v1-processed

With Training Results Tracking โ€” attach a training results CSV to track experiment outcomes directly inside the version:

marco upload my_dataset.csv -t v1-trained -r ./training_results.csv

Note: During upload, Marco automatically generates a raw_stats.json artifact inside the version directory. This file captures pristine, pre-pipeline dataset statistics โ€” including vocabulary size, document length distributions (avg, median, std, min, max), and label distributions.

3. List Versions

View all versions you've created, along with their tags and timestamps.

marco list

4. Restore / Checkout Data

Extract the processed dataset from Marco's storage back into your active workspace for model training.

marco restore v1-processed -o ./training_data.tsv

5. Export / Import Versions

Easily share dataset versions with teammates by packing them into .tar.gz archives.

# Export version 'v1-raw' to the 'exports' folder
marco export v1-raw ./exports/

# Import an archive received from a teammate
marco import ./exports/marco_version_e5e0b767.tar.gz

6. Delete Versions

Delete a dataset version to recover disk space. Marco intelligently updates the lineage (parents history) of any descendant versions so that your Git-style history tree remains intact.

marco delete v1-raw
# or by hash
marco rm e5e0b767

7. Diff Versions โ€” Unified ---/+++ Format

marco diff prints a line-by-line unified diff directly to the terminal โ€” no files written, no clutter.

Diff the raw source data (default):

marco diff v1.0 v2.0

Diff the post-pipeline preprocessed output:

marco diff v1.0 v2.0 --target preprocessed

Diff the DAG preprocessing configuration:

marco diff v1.0 v2.0 --target config

Control how many context lines surround each hunk (default: 3):

marco diff v1.0 v2.0 --context 10

Save a full Markdown metrics report to a folder (opt-in):

marco diff v1.0 v2.0 --save ./reports

Example terminal output:

--- v1.0 (abc12345)/raw.txt
+++ v2.0 (def67890)/raw.txt
@@ -1,5 +1,6 @@
 positive  Great product, love it!
-negative  Terrible experience.
+negative  Poor experience, not recommended.
+negative  Worst purchase I ever made.
 positive  Highly recommend to everyone.
 neutral   It was okay, nothing special.

8. KL Divergence & Token Analytics

Marco goes beyond simple vocabulary size tracking. It uses KL divergence (Kullback-Leibler) to measure exactly how token probability distributions shift between two dataset versions โ€” telling you whether common words disappeared or rare domain terms suddenly dominated.

marco token-analytics v1-raw v2-processed

๐Ÿ”ฌ Reproducibility Proof

Marco guarantees that a dataset version is not just stored โ€” it is provably reproducible. The marco/reproducibility_proof/ module lets you mathematically verify that re-running the exact same pipeline on the same raw data produces a byte-identical result.

1. Verify a Single Version

Re-runs the full preprocessing pipeline from scratch and compares the freshly computed output hash against the stored hash in the manifest.

marco verify v1-raw
# or with a full hash
marco verify fe44032c

Example output:

๐Ÿ”ฌ Verifying version: fe44032c70164a71...

  Pipeline Step Verification:
    โœ…  step_1 normalize_newlines
    โœ…  step_2 lowercase

  Stored  output_hash: ed610672ea28e065...
  Recomputed   hash:   ed610672ea28e065...

  โœ… VERIFIED โ€” output hash matches. Version is reproducible.
  • On PASS: the manifest is updated with "verified": true, a timestamp, the current environment snapshot, and per-step hashes.
  • On FAIL: a verification_report.json is written inside the version folder with a row-level delta showing exactly which rows differ. Exit code is 1.

2. Verify All Versions at Once

Audit every version in the repository and get a clean summary table.

marco verify-all

Example output:

โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
  Marco Reproducibility Audit โ€” 3 version(s) found
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
๐Ÿ”ฌ Verifying version: a3f9c1d2...  โœ… VERIFIED
๐Ÿ”ฌ Verifying version: fe44032c...  โœ… VERIFIED
๐Ÿ”ฌ Verifying version: 83f77823...  โŒ FAIL
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
  Summary: 2/3 versions passed.
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

Returns exit code 1 if any version fails โ€” making it CI/CD friendly.


How the 7-Layer Reproducibility Engine Works

# Guarantee How It Works
1 Step-by-step hash verification Hashes the output after every individual DAG step. Pinpoints exactly which step introduced non-determinism (โœ… step_1, โŒ step_2).
2 Byte-exact canonical enforcer Before hashing, data is serialized into a strictly defined canonical TSV format: Unix line endings only, fixed column order (label, text, n_tokens), UTF-8 encoding. Prevents false FAIL results from OS differences (Windows CRLF vs Linux LF).
3 Row-level delta on FAIL When a hash mismatch occurs, computes exactly which rows were added or removed between the stored output and the fresh recompute, saved in verification_report.json.
4 Permanent audit trail Every verification run (PASS or FAIL) is appended to .marco/verification_log.jsonl with a timestamp, result, and full environment snapshot โ€” a tamper-evident history.
5 Environment fingerprinting Stores Python version, NumPy/Pandas versions, and platform info in the manifest at verification time. Warns on re-verification if the environment changed: "Python 3.10 โ†’ 3.14 (may explain hash mismatch)".
6 Stochastic operation detector Scans the pipeline DAG config for non-deterministic functions (e.g. shuffle, random_sample) that lack a seed parameter. Warns before verifying so expectations are set correctly.
7 Manifest integrity update On PASS: sets "verified": true in manifest.json and persists per-step hashes. On FAIL: sets "verified": false and keeps verification_report.json alongside the version data.

Verification Report (verification_report.json)

When a version fails, Marco writes a full diagnostic file at .marco/versions/<version_id>/verification_report.json:

{
  "version_id": "fe44032c...",
  "verified_at": "2026-03-18T14:01:00Z",
  "result": "FAIL",
  "stored_hash": "ed610672...",
  "computed_hash": "a3f9c1d2...",
  "step_hashes": {
    "step_1": "aabbcc...",
    "step_2": "ddeeff..."
  },
  "stochastic_warnings": [],
  "environment_warnings": ["python_version changed: '3.10' โ†’ '3.14'"],
  "row_delta": {
    "count_stored": 1000,
    "count_computed": 998,
    "removed": [["pos", "hello world"], ["neg", "bad product"]],
    "added": []
  }
}

๐Ÿง  Architecture Overview

Marco decouples logic from the file system. All core engine operations live inside marco/core/:

  • locker.py โ€” File-based concurrency control using .lock files.
  • repository.py โ€” CRUD operations for dataset versions and refs.json tagging. Enforces file immutability by setting read-only permissions (0o444) on all version files immediately after creation.
  • preprocessor.py โ€” A robust Directed Acyclic Graph (DAG) preprocessing engine with deterministic topological execution.
  • comparator.py โ€” Version comparison via Markdown metric reports (compare_versions) and classic ---/+++ unified diffs (diff_versions_text) using Python's stdlib difflib.

Reproducibility Proof Engine (marco/reproducibility_proof/)

  • canonicalizer.py โ€” Enforces byte-exact canonical serialization (Unix line endings, fixed column order). Also detects stochastic/non-deterministic pipeline operations.
  • audit_log.py โ€” Appends every verification run (PASS or FAIL) to .marco/verification_log.jsonl with a full environment snapshot.
  • verify.py โ€” End-to-end reproducibility verification with step-by-step hashing, row-level delta reports, environment fingerprinting, and a verify_all() batch audit command.

Have fun building safer machine learning pipelines!

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

marco_dvcs-0.1.35.tar.gz (36.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

marco_dvcs-0.1.35-py3-none-any.whl (37.7 kB view details)

Uploaded Python 3

File details

Details for the file marco_dvcs-0.1.35.tar.gz.

File metadata

  • Download URL: marco_dvcs-0.1.35.tar.gz
  • Upload date:
  • Size: 36.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.1

File hashes

Hashes for marco_dvcs-0.1.35.tar.gz
Algorithm Hash digest
SHA256 17d948ae5effb3e81d5006a318fb86ed2ec454554c238a453b4d79307b2bb024
MD5 134da7ae4b2dc4c5416f167438af2800
BLAKE2b-256 6095b3754719754234924c91c29139543fc3b7b31a3f6201a6b03562a6734330

See more details on using hashes here.

File details

Details for the file marco_dvcs-0.1.35-py3-none-any.whl.

File metadata

  • Download URL: marco_dvcs-0.1.35-py3-none-any.whl
  • Upload date:
  • Size: 37.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.1

File hashes

Hashes for marco_dvcs-0.1.35-py3-none-any.whl
Algorithm Hash digest
SHA256 0b27f174139f1e8d7e61c4f7acf126c8d56af24be474934e9f1bb654fc7f80f1
MD5 3ba3c7adfca4ecc7f02ae2660ebb3dc3
BLAKE2b-256 4b4429bff0a4acb9a8f1c1ff5edfbadf3c6a932cb96ae88e236cecbb144ce2c2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page