Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: centerforaisafety/AIS-cost-effectiveness
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: apartresearch/AIS-cost-effectiveness
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 15, 2023

  1. 📝 README purpose update

    esbenkc committed Jul 15, 2023
    Copy the full SHA
    1be0c20 View commit details
Showing with 13 additions and 5 deletions.
  1. +13 −5 README.md
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# AI safety cost-effectiveness

This repository contains code for estimating the cost-effectiveness of various field-building programs. It has been built for the [Center for AI Safety](https://www.safe.ai/).
This repository contains code for estimating the cost-effectiveness of various field-building programs. It has been built for the [Center for AI Safety](https://www.safe.ai/). **This is a fork to estimate the cost effectiveness of Apart Research's programs:**

- [Alignment Jam hackathons](https://alignmentjam.com)
- [Apart Labs program](https://apartresearch.com)
- [Apart YouTube channel (talks)](https://youtube.com/@apartresearch)
- [Apart's AI safety newsletter (YouTube, newsletter, podcast)](https://news.apartresearch.com)
- [AI Safety Ideas](https://aisi.ai)

Each of these will be evaluated in turn. Earlier points have higher priority.

## Using this repository

@@ -17,10 +25,10 @@ If you would like assistance with this repo and/or your own evaluations, contact
## Directory Structure

- `src`: Contains source code.
- `models`: Contains cost-effectiveness models, the main logic of this project.
- `parameters`: Contains parameter instances for each program evaluated. (The [parameters README](/src/parameters/README.md) describes what we mean by instances.)
- `scripts`: Contains scripts for generating outputs. Organized into subdirectories for `examples` of how to use the repository, and code used to generate content for written `posts`.
- `utilities`: Contains functions and assumptions that are common across multiple cost-benefit analyses. Organized into subdirectories for `assumptions`, `defaults`, `functions`, `plotting`, and `sampling`.
- `models`: Contains cost-effectiveness models, the main logic of this project.
- `parameters`: Contains parameter instances for each program evaluated. (The [parameters README](/src/parameters/README.md) describes what we mean by instances.)
- `scripts`: Contains scripts for generating outputs. Organized into subdirectories for `examples` of how to use the repository, and code used to generate content for written `posts`.
- `utilities`: Contains functions and assumptions that are common across multiple cost-benefit analyses. Organized into subdirectories for `assumptions`, `defaults`, `functions`, `plotting`, and `sampling`.
- `output`: Contains data and plot outputs generated from `scripts`.

The `scripts` feed `parameters` into `models` to produce `output`s. The `utilities` are used at many different stages of the project -- providing functions for specifying parameters, lower-level functions for models, sampling functions for the scripts, plotting functions for the outputs, and more.