fix: Expand a bit on the README

This commit is contained in:
NunoSempere 2021-10-06 13:29:09 +02:00
parent 7c97a67a7b
commit 7f8c1e3c45
2 changed files with 25 additions and 20 deletions

View File

@ -1,12 +1,17 @@
## About
This repository creates a react webpage that allows to extract a utility function from possibly inconsistent binary comparisons
## Object structure ## Object structure
The core structure is json array of objects. Only the "name" attribute is necessary; the id is also internally necessary but it's created on the fly if it doesn't exist. The reason that ids are needed is that comparing objects is annoying. The core structure is json array of objects. Only the "name" attribute is required; the id is also internally required but it's created on the fly if it doesn't exist. The reason that ids are needed is that comparing objects is annoying. I think that one object must have the `isReferenceValue` property as true, but I'm not sure.
``` ```
[ [
{ {
"id": 1, "id": 1,
"name": "Peter Parker", "name": "Peter Parker",
"someOptionalKey": "...", "someOptionalKey": "...",
"anotherMoreOptionalKey": "..." "anotherMoreOptionalKey": "...",
"isReferenceValue": true
}, },
{ {
"id": 2, "id": 2,

View File

@ -1,39 +1,39 @@
[ [
{ {
"name": "A comment on setting up a charity", "name": "A comment on setting up a charity",
"url": "https://forum.effectivealtruism.org/posts/3PjNiLLkCMzAN2BSz/when-setting-up-a-charity-should-you-employ-a-lawyer?commentId=YNKNcp6nKqxqkZgCu" "url": "https://forum.effectivealtruism.org/posts/3PjNiLLkCMzAN2BSz/when-setting-up-a-charity-should-you-employ-a-lawyer?commentId=YNKNcp6nKqxqkZgCu"
}, },
{ {
"name": "Extinguishing or preventing coal seam fires is a potential cause area", "name": "Extinguishing or preventing coal seam fires is a potential cause area",
"url": "https://forum.effectivealtruism.org/posts/2nrx8GdtobScoAZF8/extinguishing-or-preventing-coal-seam-fires-is-a-potential" "url": "https://forum.effectivealtruism.org/posts/2nrx8GdtobScoAZF8/extinguishing-or-preventing-coal-seam-fires-is-a-potential"
}, },
{ {
"name": "Shallow evaluations of longtermist organizations", "name": "Shallow evaluations of longtermist organizations",
"url": "https://forum.effectivealtruism.org/posts/xmmqDdGqNZq5RELer/shallow-evaluations-of-longtermist-organizations" "url": "https://forum.effectivealtruism.org/posts/xmmqDdGqNZq5RELer/shallow-evaluations-of-longtermist-organizations"
}, },
{ {
"name": "Categorizing Variants of Goodhart's Law", "name": "Categorizing Variants of Goodhart's Law",
"url": "https://arxiv.org/abs/1803.04585" "url": "https://arxiv.org/abs/1803.04585",
"isReferenceValue": true
}, },
{ {
"name": "The Vulnerable World Hypothesis", "name": "The Vulnerable World Hypothesis",
"url": "https://nickbostrom.com/papers/vulnerable.pdf" "url": "https://nickbostrom.com/papers/vulnerable.pdf"
}, },
{ {
"name": "The Global Priorities Institute's Research Agenda", "name": "The Global Priorities Institute's Research Agenda",
"url": "https://globalprioritiesinstitute.org/research-agenda/" "url": "https://globalprioritiesinstitute.org/research-agenda/"
}, },
{ {
"name": "Superintelligence", "name": "Superintelligence",
"url": "https://en.wikipedia.org/wiki/Superintelligence%3A_Paths%2C_Dangers%2C_Strategies" "url": "https://en.wikipedia.org/wiki/Superintelligence%3A_Paths%2C_Dangers%2C_Strategies"
}, },
{ {
"name": "Thinking Fast and Slow", "name": "Thinking Fast and Slow",
"url": "https://en.wikipedia.org/wiki/Thinking%2C_Fast_and_Slow" "url": "https://en.wikipedia.org/wiki/Thinking%2C_Fast_and_Slow"
}, },
{ {
"name": "The Mathematical Theory of Communication", "name": "The Mathematical Theory of Communication",
"url": "https://en.wikipedia.org/wiki/A_Mathematical_Theory_of_Communication" "url": "https://en.wikipedia.org/wiki/A_Mathematical_Theory_of_Communication"
} }
] ]