feat: repo renamed
This commit is contained in:
parent
d662572bcd
commit
7565540f8a
|
@ -15,7 +15,7 @@ I also created a search engine using Elicit's IDE, which uses GPT-3 to deliver v
|
||||||
### 1. Download this repository
|
### 1. Download this repository
|
||||||
|
|
||||||
```
|
```
|
||||||
$ git clone https://github.com/QURIresearch/metaforecasts
|
$ git clone https://github.com/QURIresearch/metaforecast
|
||||||
$ cd metaforecasts
|
$ cd metaforecasts
|
||||||
$ npm install
|
$ npm install
|
||||||
```
|
```
|
||||||
|
@ -37,7 +37,7 @@ See [./docs/configuration.md](./docs/configuration.md) for details.
|
||||||
### 4. Example: download the metaforecasts database
|
### 4. Example: download the metaforecasts database
|
||||||
|
|
||||||
```
|
```
|
||||||
$ git clone https://github.com/QURIresearch/metaforecasts
|
$ git clone https://github.com/QURIresearch/metaforecast
|
||||||
$ cd metaforecasts
|
$ cd metaforecasts
|
||||||
$ npm install
|
$ npm install
|
||||||
$ node src/backend/manual/manualDownload.js
|
$ node src/backend/manual/manualDownload.js
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
"name": "metaforecasts",
|
"name": "metaforecast",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "Get forecasts from various platforms",
|
"description": "Get forecasts from various platforms",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/QURIresearch/metaforecasts.git"
|
"url": "git+https://github.com/QURIresearch/metaforecast.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"forecasts",
|
"forecasts",
|
||||||
|
@ -13,9 +13,9 @@
|
||||||
"author": "Nuño Sempere",
|
"author": "Nuño Sempere",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/QURIresearch/metaforecasts/"
|
"url": "https://github.com/QURIresearch/metaforecast/"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/QURIresearch/metaforecasts#readme",
|
"homepage": "https://github.com/QURIresearch/metaforecast#readme",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"cli": "ts-node src/backend/index.ts",
|
"cli": "ts-node src/backend/index.ts",
|
||||||
"reload": "heroku run:detached node src/backend/utils/doEverythingForScheduler.js",
|
"reload": "heroku run:detached node src/backend/utils/doEverythingForScheduler.js",
|
||||||
|
|
|
@ -10,14 +10,14 @@ This is a search engine for probabilities. Given a query, it searches for releva
|
||||||
|
|
||||||
You can also call the metaforecast database from within Twitter by mentioning @metaforecast, [like so](https://twitter.com/NunoSempere/status/1433160907308294144).
|
You can also call the metaforecast database from within Twitter by mentioning @metaforecast, [like so](https://twitter.com/NunoSempere/status/1433160907308294144).
|
||||||
|
|
||||||
You can read a longer writeup with thoughts and motivations [here](https://forum.effectivealtruism.org/posts/tEo5oXeSNcB3sYr8m/introducing-metaforecast-a-forecast-aggregator-and-search), and an update thereto [here](https://www.lesswrong.com/posts/5hugQzRhdGYc6ParJ/metaforecast-update-better-search-capture-functionality-more). You can read the code for the back-end used to fetch probabilities [here](https://github.com/QURIresearch/metaforecast-backend)— including instructions for how to download the underlying dataset, or view the source for the front-end [here](https://github.com/QURIresearch/metaforecast-frontend).
|
You can read a longer writeup with thoughts and motivations [here](https://forum.effectivealtruism.org/posts/tEo5oXeSNcB3sYr8m/introducing-metaforecast-a-forecast-aggregator-and-search), and an update thereto [here](https://www.lesswrong.com/posts/5hugQzRhdGYc6ParJ/metaforecast-update-better-search-capture-functionality-more). You can read the code for the back-end used to fetch probabilities [here](https://github.com/QURIresearch/metaforecast)— including instructions for how to download the underlying dataset, or view the source for the front-end [here](https://github.com/QURIresearch/metaforecast-frontend).
|
||||||
|
|
||||||
## Advanced search
|
## Advanced search
|
||||||
If your initial search doesn't succeed, you might want to try tinkering with the advanced search. In particular, try increasing or decreasing the stars threshold, or changing the number of search results shown.
|
If your initial search doesn't succeed, you might want to try tinkering with the advanced search. In particular, try increasing or decreasing the stars threshold, or changing the number of search results shown.
|
||||||
|
|
||||||
## What are stars, and how are they computed?
|
## What are stars, and how are they computed?
|
||||||
|
|
||||||
Star ratings—e.g. ★★★☆☆—are an indicator of the quality of an aggregate forecast for a question. These ratings currently try to reflect my own best judgment and the best judgment of forecasting experts I've asked, based on our collective experience forecasting on these platforms. Thus, stars have a strong subjective component which could be formalized and refined in the future. You can see the code used to decide how many stars to assign according to platform and various quality indicators [here](https://github.com/QURIresearch/metaforecasts/blob/master/src/utils/stars.js)
|
Star ratings—e.g. ★★★☆☆—are an indicator of the quality of an aggregate forecast for a question. These ratings currently try to reflect my own best judgment and the best judgment of forecasting experts I've asked, based on our collective experience forecasting on these platforms. Thus, stars have a strong subjective component which could be formalized and refined in the future. You can see the code used to decide how many stars to assign according to platform and various quality indicators [here](https://github.com/QURIresearch/metaforecast/blob/master/src/utils/stars.js)
|
||||||
|
|
||||||
Also note that, whatever other redeeming features they might have, prediction markets rarely go above 95% or below 5%.
|
Also note that, whatever other redeeming features they might have, prediction markets rarely go above 95% or below 5%.
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,7 @@ export async function getForecasts0() {
|
||||||
import axios from "axios"
|
import axios from "axios"
|
||||||
|
|
||||||
export async function getForecasts1() {
|
export async function getForecasts1() {
|
||||||
const { data } = await axios.get(`https://raw.githubusercontent.com/QURIresearch/metaforecasts/master/data/metaforecasts.json?ver=${Math.random().toFixed(10)}`) // this is, for now, a hack
|
const { data } = await axios.get(`https://raw.githubusercontent.com/QURIresearch/metaforecast/master/data/metaforecasts.json?ver=${Math.random().toFixed(10)}`) // this is, for now, a hack
|
||||||
//console.log(data)
|
//console.log(data)
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user