-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathorg-watch-priorities.sql
134 lines (129 loc) · 5.6 KB
/
org-watch-priorities.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
-- Highest priority orgs (p1)
-- Goal is that last_major_data_update_date should be at most half a year old
-- This includes leading orgs working in AI safety, effective altruism meta,
-- and the biggest grantmakers / grant influencers
select 'p1' as priority, organization, last_major_data_update_date from organizations
where organization in (
'AI Impacts',
'Centre for Effective Altruism',
'GiveWell',
'Lightcone Infrastructure',
'Machine Intelligence Research Institute',
'Open Philanthropy'
) and (last_major_data_update_date is null or datediff(curdate(), last_major_data_update_date) > 183)
order by last_major_data_update_date;
-- Second-highest priority orgs (p2)
-- Goal is that last_major_data_update_date should be at most a year old
-- This includes orgs working in AI safety or other GCRs, including orgs
-- that play a supporting role; it also includes evaluator and EA meta orgs;
-- by and large, we avoid putting very large orgs at p2
select 'p2' as priority, organization, last_major_data_update_date from organizations
where organization in (
'80,000 Hours',
'AI Safety Camp',
'Alignment Research Center',
'Animal Charity Evaluators',
'Berkeley Existential Risk Initiative',
'Center for Applied Rationality',
'Center on Long-Term Risk',
'Ought',
'Redwood Research'
) and (last_major_data_update_date is null or datediff(curdate(), last_major_data_update_date) > 365)
order by last_major_data_update_date;
-- Third-highest priority orgs (p3)
-- Goal is that last_major_data_update_date should be at most 1.5 years old
-- This includes orgs working in AI safety and other GCRS, including orgs
-- that play a supporting role; the main distinction between p2 and p3
-- is that p2 orgs tend to be some combination of smaller and more important
select 'p3' as priority, organization, last_major_data_update_date from organizations
where organization in (
'Anthropic', -- this is a small org right now in Org Watch, but is expected to have grown quite a bit and is expected to continue to grow more
'Center for AI Safety',
'Center for Human-Compatible AI',
'Center for Security and Emerging Technology',
'Conjecture',
'Cooperative AI Foundation',
'Effective Altruism Funds',
'Epoch',
'Fund for Alignment Research', -- consider renaming to FAR AI as they've rebranded as that
'Future of Life Institute',
'General AI Challenge',
'Global Catastrophic Risk Institute',
'GoodAI',
'Google DeepMind',
'Leverhulme Centre for the Future of Intelligence',
'Longview Philanthropy',
'Median Group',
'Nonlinear Fund', -- consider rebranding to Nonlinear as they seem to have rebranded to remove the 'Fund' from their org name
'OpenAI',
'Theiss Research'
) and (last_major_data_update_date is null or datediff(curdate(), last_major_data_update_date) > 548)
order by last_major_data_update_date;
-- Fourth-highest priority orgs (p4)
-- Goal is that last_major_data_update_date should be at most 2 years old
-- This includes orgs further down than p3 in importance or bigger in size;
-- it mostly doesn't include AI safety orgs as those are p3 or higher;
-- however, it does include other GCR orgs, EA meta, and the smaller animal welfare meta orgs
select 'p4' as priority, organization, last_major_data_update_date from organizations
where organization in (
'Alvea',
'Centre for the Study of Existential Risk',
'FLOWERS',
'Forethought Foundation for Global Priorities Research',
'Giving What We Can',
'Happier Lives Institute',
'Legal Priorities Project',
'Leverage Research',
'Metaculus',
'Methuselah Foundation',
'Raising for Effective Giving',
'Rethink Charity',
'Rethink Priorities',
'SENS Research Foundation',
'Sentience Institute',
'Sentience Politics',
'Simon Institute',
'The Centre for Long-Term Resilience'
) and (last_major_data_update_date is null or datediff(curdate(), last_major_data_update_date) > 730)
order by last_major_data_update_date;
-- Fifth-highest priority orgs (p5)
-- Goal is that last_major_data_update_date should be at most 4 years old
-- This includes orgs in object-level (not meta) areas prioritized in EA,
-- and is limited to orgs with fewer than 150 people
select 'p5' as priority, organization, last_major_data_update_date from organizations
where organization in (
'Against Malaria Foundation',
'Albert Schweitzer Foundation',
'Animal Advocacy Africa',
'Charity Science Health',
'Charity Science', -- NOTE: This org does not currently have a row in organizations.sql so make sure to add that row first
'Effective Altruism Foundation',
'Effective Altruism Geneva',
'Fish Welfare Initiative',
'Generation Pledge',
'High Impact Medicine',
'Johns Hopkins Center for Health Security',
'LEV Foundation',
'Lifespan Extension Advocacy Foundation',
'One for the World',
'SCI Foundation',
'Suvita',
'Wild Animal Initiative'
) and (last_major_data_update_date is null or datediff(curdate(), last_major_data_update_date) > 1461)
order by last_major_data_update_date;
-- p6 query
-- Goal is that last_major_data_update_date should be at most 8 years old
-- This includes a large org (100+ people, usually 150+ people) that are impractical to update
-- and are not super-interesting to us
select 'p6' as priority, organization, last_major_data_update_date from organizations
where organization in (
'Abdul Latif Jameel Poverty Action Lab',
'Center for Global Development',
'Give Directly',
'Innovations for Poverty Action',
'Mercy For Animals',
'New Incentives',
'The Good Food Institute',
'The Humane League'
) and (last_major_data_update_date is null or datediff(curdate(), last_major_data_update_date) > 2922)
order by last_major_data_update_date;