Last active
August 29, 2015 14:18
-
-
Save mathisonian/db49063f901cb7afe6a0 to your computer and use it in GitHub Desktop.
Neurofinder JSON spec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
source_url: "URL", // github url | |
algorithm_name: "STRING", // maybe unnecessary | |
avatar: "URL", // get the avatar from github | |
metrics: [{ // an array of perfomance metrics. each test has a name and a score | |
name: "test_name", | |
type: "data type", // series, histogram, singleton, etc | |
value: "test_value" | |
}], | |
output_summary: [{ // algorithm value | |
name: "STRING", | |
type: "data type", // e.g. image, shape | |
value: "algorithm value" | |
}], | |
performance_summary: "", // a single value summary of the performance of this algorithm | |
run_time: "TIMESTAMP", | |
run_count: 0 // how many times have we tested this algorithm? | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment