Skip to content

Instantly share code, notes, and snippets.

@iamalwaysuncomfortable
Last active April 18, 2023 13:44
Show Gist options
  • Save iamalwaysuncomfortable/d399398c3ad32c2218f44169f4e799cb to your computer and use it in GitHub Desktop.
Save iamalwaysuncomfortable/d399398c3ad32c2218f44169f4e799cb to your computer and use it in GitHub Desktop.
Privacy Preserving zkML frameworks
graph LR
    subgraph Predictions
    e[Public Predictions]
    f[Private Predictions]
    end
    subgraph Model
    c[Verified Private Model]
    d[Public Model]
    c-->e
    c-->f
    d-->e
    d-->f
    end
    subgraph Inputs
    a[Private Inputs]-->c
    a-->d
    b[Public Inputs]-->c
    b-->d
    end
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment