From c2782a2a8d790d37100eefbbc48e57efd06ddd77 Mon Sep 17 00:00:00 2001 From: larry-neil-1206 Date: Thu, 21 Nov 2024 19:06:02 -0700 Subject: [PATCH] feat: update readme.md --- README.md | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 40cf024..76e53aa 100644 --- a/README.md +++ b/README.md @@ -12,18 +12,17 @@ This poc provides a basic structure for building proof tasks that: ```json { - "dlp_id": 1234, // DLP ID is found in the Root Network contract after the DLP is registered - "valid": false, // A single boolean to summarize if the file is considered valid in this DLP - "score": 0.7614457831325301, // A score between 0 and 1 for the file, used to determine how valuable the file is. This can be an aggregation of the individual scores below. - "authenticity": 1.0, // A score between 0 and 1 to rate if the file has been tampered with - "ownership": 1.0, // A score between 0 and 1 to verify the ownership of the file - "quality": 0.6024096385542169, // A score between 0 and 1 to show the quality of the file - "uniqueness": 0, // A score between 0 and 1 to show unique the file is, compared to others in the DLP - "attributes": { // Custom attributes that can be added to the proof to provide extra context about the encrypted file - "total_score": 0.5, - "score_threshold": 0.83, - "email_verified": true - } + "dlp_id": 5, + "valid": true, + "score": 0.7614457831325301, + "time_minimums": 1.0, + "time_correlation": 1.0, + "time_distribution": 1.0, + "repeat_anwsers": 1.0, + "both_sides": 0, + "model_distribution": 0.0, + "poison_data": 0.0, + "uniqueness": 0.0 } ```