feat: repo renamed

This commit is contained in:
Vyacheslav Matyukhin 2022-03-27 00:33:13 +03:00
parent d662572bcd
commit 7565540f8a
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C
4 changed files with 9 additions and 9 deletions

View File

@ -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
```
$ git clone https://github.com/QURIresearch/metaforecasts
$ git clone https://github.com/QURIresearch/metaforecast
$ cd metaforecasts
$ npm install
```
@ -37,7 +37,7 @@ See [./docs/configuration.md](./docs/configuration.md) for details.
### 4. Example: download the metaforecasts database
```
$ git clone https://github.com/QURIresearch/metaforecasts
$ git clone https://github.com/QURIresearch/metaforecast
$ cd metaforecasts
$ npm install
$ node src/backend/manual/manualDownload.js

View File

@ -1,10 +1,10 @@
{
"name": "metaforecasts",
"name": "metaforecast",
"version": "1.0.0",
"description": "Get forecasts from various platforms",
"repository": {
"type": "git",
"url": "git+https://github.com/QURIresearch/metaforecasts.git"
"url": "git+https://github.com/QURIresearch/metaforecast.git"
},
"keywords": [
"forecasts",
@ -13,9 +13,9 @@
"author": "Nuño Sempere",
"license": "MIT",
"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": {
"cli": "ts-node src/backend/index.ts",
"reload": "heroku run:detached node src/backend/utils/doEverythingForScheduler.js",

View File

@ -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 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
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?
Star ratingse.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 ratingse.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%.

View File

@ -82,7 +82,7 @@ export async function getForecasts0() {
import axios from "axios"
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)
return data
}