From 7565540f8a85500b6072c338c99a72f787fc7982 Mon Sep 17 00:00:00 2001 From: Vyacheslav Matyukhin Date: Sun, 27 Mar 2022 00:33:13 +0300 Subject: [PATCH] feat: repo renamed --- README.md | 4 ++-- package.json | 8 ++++---- src/pages/about.tsx | 4 ++-- src/web/worker/getForecasts.js | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c65b002..f17cf97 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index 0fd67f6..69cf3f4 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/pages/about.tsx b/src/pages/about.tsx index 29aa16c..bbd68cb 100644 --- a/src/pages/about.tsx +++ b/src/pages/about.tsx @@ -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 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%. diff --git a/src/web/worker/getForecasts.js b/src/web/worker/getForecasts.js index 3c0f8fa..3ae49dd 100644 --- a/src/web/worker/getForecasts.js +++ b/src/web/worker/getForecasts.js @@ -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 }