fix: Expand a bit on the README
This commit is contained in:
parent
7c97a67a7b
commit
7f8c1e3c45
|
@ -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
|
||||
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,
|
||||
"name": "Peter Parker",
|
||||
"someOptionalKey": "...",
|
||||
"anotherMoreOptionalKey": "..."
|
||||
"anotherMoreOptionalKey": "...",
|
||||
"isReferenceValue": true
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
|
|
|
@ -1,39 +1,39 @@
|
|||
[
|
||||
{
|
||||
"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"
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"name": "Shallow evaluations of longtermist organizations",
|
||||
"url": "https://forum.effectivealtruism.org/posts/xmmqDdGqNZq5RELer/shallow-evaluations-of-longtermist-organizations"
|
||||
},
|
||||
{
|
||||
"name": "Categorizing Variants of Goodhart's Law",
|
||||
"url": "https://arxiv.org/abs/1803.04585"
|
||||
"name": "Categorizing Variants of Goodhart's Law",
|
||||
"url": "https://arxiv.org/abs/1803.04585",
|
||||
"isReferenceValue": true
|
||||
},
|
||||
{
|
||||
"name": "The Vulnerable World Hypothesis",
|
||||
"url": "https://nickbostrom.com/papers/vulnerable.pdf"
|
||||
"name": "The Vulnerable World Hypothesis",
|
||||
"url": "https://nickbostrom.com/papers/vulnerable.pdf"
|
||||
},
|
||||
{
|
||||
"name": "The Global Priorities Institute's Research Agenda",
|
||||
"url": "https://globalprioritiesinstitute.org/research-agenda/"
|
||||
"name": "The Global Priorities Institute's Research Agenda",
|
||||
"url": "https://globalprioritiesinstitute.org/research-agenda/"
|
||||
},
|
||||
{
|
||||
"name": "Superintelligence",
|
||||
"url": "https://en.wikipedia.org/wiki/Superintelligence%3A_Paths%2C_Dangers%2C_Strategies"
|
||||
"name": "Superintelligence",
|
||||
"url": "https://en.wikipedia.org/wiki/Superintelligence%3A_Paths%2C_Dangers%2C_Strategies"
|
||||
},
|
||||
{
|
||||
"name": "Thinking Fast and Slow",
|
||||
"url": "https://en.wikipedia.org/wiki/Thinking%2C_Fast_and_Slow"
|
||||
"name": "Thinking Fast and Slow",
|
||||
"url": "https://en.wikipedia.org/wiki/Thinking%2C_Fast_and_Slow"
|
||||
},
|
||||
{
|
||||
"name": "The Mathematical Theory of Communication",
|
||||
"url": "https://en.wikipedia.org/wiki/A_Mathematical_Theory_of_Communication"
|
||||
"name": "The Mathematical Theory of Communication",
|
||||
"url": "https://en.wikipedia.org/wiki/A_Mathematical_Theory_of_Communication"
|
||||
}
|
||||
]
|
||||
|
||||
]
|
Loading…
Reference in New Issue
Block a user