xlth commited on
Commit
e2793b4
·
verified ·
1 Parent(s): 3c2088b

Initial release: CRED-1 v1.0 (2,672 domains)

Browse files
CODEBOOK.md ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CRED-1 Codebook
2
+
3
+ Version 1.0 — February 2026
4
+
5
+ This codebook documents all variables in the CRED-1 dataset. The dataset is distributed in three formats: a full JSON file, a CSV file for research analysis, and a compact JSON file for on-device embedding.
6
+
7
+ ## JSON Format (`cred1_current.json`)
8
+
9
+ JSON object mapping domain names (string keys) to full metadata objects with all enrichment signals and score components.
10
+
11
+ | Field | Type | Range | Description |
12
+ |---|---|---|---|
13
+ | `category` | string | `fake`,`unreliable`,`mixed`,`conspiracy`,`satire`,`reliable` | Full category name. See [Category Taxonomy](#category-taxonomy). |
14
+ | `credibility_score` | float | 0.00-1.00 | Composite credibility score. Lower values indicate lower credibility. See [Scoring Model](#scoring-model). |
15
+ | `sources` | integer | 1-2 | Number of independent source lists that flag this domain. |
16
+ | `tranco_rank` | integer | 1-1,000,000 | Tranco Top-1M rank. **Optional** - absent if not ranked. |
17
+ | `domain_registered` | string | ISO 8601 | Domain registration date from RDAP. **Optional** - absent if RDAP lookup failed. |
18
+ | `domain_age_years` | float | 0.0-35.0+ | Domain age in years, computed from `domain_registered`. **Optional**. |
19
+ | `iffy_factual` | string | `VL`,`L`,`M`,`MH`,`H`,`VH` | MBFC Factual Reporting rating. **Optional** - absent if not from Iffy.news. |
20
+ | `iffy_bias` | string | e.g. `FN`,`R`,`RC`,`C`,`LC`,`L` | MBFC political bias rating. **Optional**. |
21
+ | `iffy_score` | float | 0.0-1.0 | Iffy.news credibility score. **Optional**. |
22
+ | `factcheck_claims` | integer | 1+ | Google Fact Check Tools API claim count. **Optional** - absent if zero. |
23
+ | `safe_browsing_flagged` | boolean | `true`/`false` | Google Safe Browsing threat flag. **Optional**. |
24
+ | `score_cat` | float | 0.0-1.0 | Category-based score component. |
25
+ | `score_iffy` | float | 0.0-1.0 | Iffy.news score component. |
26
+ | `score_tranco` | float | 0.0-1.0 | Tranco rank score component. |
27
+ | `score_age` | float | 0.0-1.0 | Domain age score component. |
28
+ | `score_factcheck` | float | 0.0-1.0 | Fact-check frequency score component. |
29
+ | `score_safebrowsing` | float | 0.0-1.0 | Safe Browsing score component. |
30
+
31
+ ### Example
32
+
33
+ ```json
34
+ {
35
+ "infowars.com": {
36
+ "category": "fake",
37
+ "credibility_score": 0.14,
38
+ "domain_age_years": 26.4,
39
+ "domain_registered": "1999-10-04T04:00:00Z",
40
+ "factcheck_claims": 52,
41
+ "iffy_bias": "FN",
42
+ "iffy_factual": "VL",
43
+ "iffy_score": 0.1,
44
+ "score_age": 0.2,
45
+ "score_cat": 0.05,
46
+ "score_factcheck": 0.0,
47
+ "score_iffy": 0.1,
48
+ "score_safebrowsing": 0.05,
49
+ "score_tranco": 0.1,
50
+ "sources": 2,
51
+ "tranco_rank": 4382
52
+ }
53
+ }
54
+ ```
55
+
56
+ ### Missing Values
57
+
58
+ Optional fields are omitted entirely when unavailable. A domain *not present* in the dataset should be treated as **neutral/unknown** (not as reliable).
59
+
60
+ ---
61
+
62
+ ## CSV Format (`cred1_current.csv`)
63
+
64
+ CSV file with the same fields as JSON, sorted by `credibility_score` ascending (least credible first).
65
+
66
+ ### Source Data Fields
67
+
68
+ | Column | Type | Values / Range | Description | Source |
69
+ |---|---|---|---|---|
70
+ | `domain` | string | e.g. `infowars.com` | Normalized domain name (lowercase, no `www.` prefix, no trailing slash) | Merged |
71
+ | `category` | string | See [Category Taxonomy](#category-taxonomy) | Unified credibility category | Merged |
72
+ | `sources` | integer | 1-2 | Number of independent source lists that flag this domain. | Merged |
73
+ | `iffy_factual` | string | `VL`, `L`, `M`, `MH`, `H`, `VH`, `` | MBFC Factual Reporting rating as provided by Iffy.news. Empty if domain is only in OpenSources. | Iffy.news |
74
+ | `iffy_bias` | string | e.g. `FN`, `R`, `RC`, `C`, `LC`, `L`, `LEFT`, `` | MBFC political bias rating. Empty if not from Iffy.news. | Iffy.news |
75
+ | `iffy_score` | float | 0.0–1.0, or empty | Iffy.news credibility score. Lower = less credible. Empty if not from Iffy.news. | Iffy.news |
76
+
77
+ ### Enrichment Signal Fields
78
+
79
+ | Column | Type | Values / Range | Description | Source |
80
+ |---|---|---|---|---|
81
+ | `tranco_rank` | integer | 1–1,000,000, or empty | Position in the Tranco Top-1M list. Lower = more popular. Empty if domain not ranked. | [Tranco](https://tranco-list.eu/) |
82
+ | `domain_age_years` | float | 0.0–35.0+, or empty | Years since domain registration (computed from RDAP registration date to dataset build date). Empty if RDAP lookup failed. | [RDAP](https://rdap.org/) |
83
+ | `domain_registered` | string (ISO 8601) | e.g. `1999-03-07T05:00:00Z`, or empty | Domain registration date as returned by RDAP. Empty if unavailable. | RDAP |
84
+ | `factcheck_claims` | integer | 0+, or empty | Number of fact-check claims found via Google Fact Check Tools API. Empty if zero or not queried. | [Google Fact Check Tools API](https://developers.google.com/fact-check/tools/api) |
85
+ | `safe_browsing_flagged` | boolean | `True`, or empty | Whether Google Safe Browsing flagged this domain as malware or social engineering. Empty if not flagged. | [Google Safe Browsing API](https://developers.google.com/safe-browsing) |
86
+
87
+ ### Scoring Fields
88
+
89
+ | Column | Type | Range | Description |
90
+ |---|---|---|---|
91
+ | `credibility_score` | float | 0.000–1.000 | Composite credibility score. See [Scoring Model](#scoring-model). |
92
+ | `score_cat` | float | 0.0–1.0 | Category-based score component. |
93
+ | `score_iffy` | float | 0.0–1.0, or empty | Iffy.news score component. Empty if domain not from Iffy.news. |
94
+ | `score_tranco` | float | 0.0–1.0, or empty | Tranco rank component (log-normalized). Empty if not ranked. |
95
+ | `score_age` | float | 0.0–1.0, or empty | Domain age component (normalized, capped at 20 years). Empty if age unknown. |
96
+ | `score_factcheck` | float | 0.0–1.0, or empty | Fact-check frequency component (log-scaled inverse). Empty if no claims. |
97
+ | `score_safebrowsing` | string | `flagged`, or empty | Safe Browsing override indicator. If `flagged`, composite score is hard-capped at 0.05. |
98
+
99
+ ---
100
+
101
+ ## Compact Format (`cred1_compact.json`)
102
+
103
+ Minimal JSON format for on-device embedding in browser extensions and mobile applications. Uses short keys and no whitespace for minimal file size (~168KB).
104
+
105
+ | Key | Type | Description |
106
+ |---|---|---|
107
+ | `s` | float | Credibility score (same as `credibility_score`) |
108
+ | `c` | string | Category code: `f`, `u`, `m`, `c`, `s`, `r` |
109
+ | `n` | integer | Number of sources |
110
+ | `r` | integer | Tranco rank (**optional**) |
111
+ | `d` | string | Domain registration date as YYYY-MM-DD (**optional**) |
112
+
113
+ ### Example
114
+
115
+ ```json
116
+ {"infowars.com":{"c":"f","d":"1999-10-04","n":2,"r":4382,"s":0.14},"theonion.com":{"c":"s","d":"1996-08-05","n":1,"r":7429,"s":0.34}}
117
+ ```
118
+
119
+ ---
120
+
121
+ ## Category Taxonomy
122
+
123
+ Domains are classified into six categories based on consensus labels from OpenSources.co and Iffy.news. When a domain appears in both sources, the *lower credibility* category takes precedence.
124
+
125
+ | Category | Code | Base Score | Definition |
126
+ |---|---|---|---|
127
+ | **fake** | `f` | 0.0 | Sources that fabricate information, publish deceptive content, or impersonate legitimate news outlets. |
128
+ | **conspiracy** | `c` | 0.1 | Sources that consistently promote conspiracy theories not supported by evidence. |
129
+ | **unreliable** | `u` | 0.2 | Sources that may publish some factual content but regularly fail basic standards of journalistic accuracy. Includes clickbait, junk science, and hate speech sources. |
130
+ | **satire** | `s` | 0.3 | Sources that use humor, irony, or exaggeration. Not malicious, but content is not factual. |
131
+ | **mixed** | `m` | 0.5 | Sources with a mixed track record — some factual reporting alongside biased, misleading, or unverified content. |
132
+ | **reliable** | `r` | 1.0 | Sources generally considered reliable by fact-checking organizations. Note: CRED-1 contains very few reliable sources (n=8) as the upstream datasets focus on unreliable sources. |
133
+
134
+ ### OpenSources.co Category Mapping
135
+
136
+ | Original Label | → CRED-1 Category |
137
+ |---|---|
138
+ | `fake`, `fake news` | fake |
139
+ | `conspiracy` | conspiracy |
140
+ | `unreliable`, `clickbait`, `junksci`, `hate`, `rumor` | unreliable |
141
+ | `satire`, `satirical` | satire |
142
+ | `bias`, `political`, `state` | mixed |
143
+ | `reliable` | reliable |
144
+ | `blog` | other |
145
+
146
+ ### Iffy.news Factual Rating Mapping
147
+
148
+ | MBFC Factual Rating | → CRED-1 Category |
149
+ |---|---|
150
+ | VL (Very Low) | fake |
151
+ | L (Low) | unreliable |
152
+ | M (Mixed) | mixed |
153
+ | MH (Mostly High) | mostly_reliable |
154
+ | H (High), VH (Very High) | reliable |
155
+
156
+ ---
157
+
158
+ ## Scoring Model
159
+
160
+ The composite credibility score is computed as a weighted blend of up to five signals:
161
+
162
+ ```
163
+ S = 0.50 × s_cat
164
+ + 0.15 × s_iffy (if available)
165
+ + 0.15 × s_factcheck (if available)
166
+ + 0.05 × s_tranco (if available)
167
+ + 0.05 × s_age (if available)
168
+ + w_fill × s_cat (remaining weight)
169
+ ```
170
+
171
+ Where `w_fill = 1.0 - sum(active weights)` fills in for missing signals using the category score.
172
+
173
+ **Override:** If `safe_browsing_flagged = True`, the final score is hard-capped at 0.05 regardless of other signals.
174
+
175
+ ### Signal Normalization
176
+
177
+ | Signal | Formula | Interpretation |
178
+ |---|---|---|
179
+ | `s_cat` | Lookup table (see Category Taxonomy) | Category label → fixed score |
180
+ | `s_iffy` | Raw Iffy.news score (already 0.0–1.0) | Lower = less credible |
181
+ | `s_tranco` | `1.0 - log10(rank) / 6.0`, clamped to [0, 1] | Rank 1 → 1.0, Rank 1M → 0.0 |
182
+ | `s_age` | `min(1.0, age_years / 20.0)` | 0 years → 0.0, 20+ years → 1.0 |
183
+ | `s_factcheck` | `max(0.0, 1.0 - log10(claims) / 1.7)` | 1 claim → 0.8, 50+ claims → 0.0 |
184
+
185
+ ---
186
+
187
+ ## Important Usage Notes
188
+
189
+ 1. **Absence ≠ reliable:** A domain *not* in the dataset should be treated as unknown/neutral, not as trustworthy. CRED-1 is a list of domains with known credibility issues.
190
+
191
+ 2. **Score = composite indicator:** The credibility score is an aggregated heuristic, not a ground truth. It should be used as one signal among many.
192
+
193
+ 3. **Temporal validity:** Domain credibility can change over time. CRED-1 v1.0 reflects the state of source data as of February 2026.
194
+
195
+ 4. **English-language bias:** The majority of domains in the upstream sources are English-language outlets. Coverage of non-English misinformation sources is limited.
196
+
197
+ 5. **No personal data:** The dataset contains only domain-level metadata. No personally identifiable information is included.
198
+
199
+ ---
LICENSE ADDED
@@ -0,0 +1,396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Attribution 4.0 International
2
+
3
+ =======================================================================
4
+
5
+ Creative Commons Corporation ("Creative Commons") is not a law firm and
6
+ does not provide legal services or legal advice. Distribution of
7
+ Creative Commons public licenses does not create a lawyer-client or
8
+ other relationship. Creative Commons makes its licenses and related
9
+ information available on an "as-is" basis. Creative Commons gives no
10
+ warranties regarding its licenses, any material licensed under their
11
+ terms and conditions, or any related information. Creative Commons
12
+ disclaims all liability for damages resulting from their use to the
13
+ fullest extent possible.
14
+
15
+ Using Creative Commons Public Licenses
16
+
17
+ Creative Commons public licenses provide a standard set of terms and
18
+ conditions that creators and other rights holders may use to share
19
+ original works of authorship and other material subject to copyright
20
+ and certain other rights specified in the public license below. The
21
+ following considerations are for informational purposes only, are not
22
+ exhaustive, and do not form part of our licenses.
23
+
24
+ Considerations for licensors: Our public licenses are
25
+ intended for use by those authorized to give the public
26
+ permission to use material in ways otherwise restricted by
27
+ copyright and certain other rights. Our licenses are
28
+ irrevocable. Licensors should read and understand the terms
29
+ and conditions of the license they choose before applying it.
30
+ Licensors should also secure all rights necessary before
31
+ applying our licenses so that the public can reuse the
32
+ material as expected. Licensors should clearly mark any
33
+ material not subject to the license. This includes other CC-
34
+ licensed material, or material used under an exception or
35
+ limitation to copyright. More considerations for licensors:
36
+ wiki.creativecommons.org/Considerations_for_licensors
37
+
38
+ Considerations for the public: By using one of our public
39
+ licenses, a licensor grants the public permission to use the
40
+ licensed material under specified terms and conditions. If
41
+ the licensor's permission is not necessary for any reason--for
42
+ example, because of any applicable exception or limitation to
43
+ copyright--then that use is not regulated by the license. Our
44
+ licenses grant only permissions under copyright and certain
45
+ other rights that a licensor has authority to grant. Use of
46
+ the licensed material may still be restricted for other
47
+ reasons, including because others have copyright or other
48
+ rights in the material. A licensor may make special requests,
49
+ such as asking that all changes be marked or described.
50
+ Although not required by our licenses, you are encouraged to
51
+ respect those requests where reasonable. More considerations
52
+ for the public:
53
+ wiki.creativecommons.org/Considerations_for_licensees
54
+
55
+ =======================================================================
56
+
57
+ Creative Commons Attribution 4.0 International Public License
58
+
59
+ By exercising the Licensed Rights (defined below), You accept and agree
60
+ to be bound by the terms and conditions of this Creative Commons
61
+ Attribution 4.0 International Public License ("Public License"). To the
62
+ extent this Public License may be interpreted as a contract, You are
63
+ granted the Licensed Rights in consideration of Your acceptance of
64
+ these terms and conditions, and the Licensor grants You such rights in
65
+ consideration of benefits the Licensor receives from making the
66
+ Licensed Material available under these terms and conditions.
67
+
68
+
69
+ Section 1 -- Definitions.
70
+
71
+ a. Adapted Material means material subject to Copyright and Similar
72
+ Rights that is derived from or based upon the Licensed Material
73
+ and in which the Licensed Material is translated, altered,
74
+ arranged, transformed, or otherwise modified in a manner requiring
75
+ permission under the Copyright and Similar Rights held by the
76
+ Licensor. For purposes of this Public License, where the Licensed
77
+ Material is a musical work, performance, or sound recording,
78
+ Adapted Material is always produced where the Licensed Material is
79
+ synched in timed relation with a moving image.
80
+
81
+ b. Adapter's License means the license You apply to Your Copyright
82
+ and Similar Rights in Your contributions to Adapted Material in
83
+ accordance with the terms and conditions of this Public License.
84
+
85
+ c. Copyright and Similar Rights means copyright and/or similar rights
86
+ closely related to copyright including, without limitation,
87
+ performance, broadcast, sound recording, and Sui Generis Database
88
+ Rights, without regard to how the rights are labeled or
89
+ categorized. For purposes of this Public License, the rights
90
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
91
+ Rights.
92
+
93
+ d. Effective Technological Measures means those measures that, in the
94
+ absence of proper authority, may not be circumvented under laws
95
+ fulfilling obligations under Article 11 of the WIPO Copyright
96
+ Treaty adopted on December 20, 1996, and/or similar international
97
+ agreements.
98
+
99
+ e. Exceptions and Limitations means fair use, fair dealing, and/or
100
+ any other exception or limitation to Copyright and Similar Rights
101
+ that applies to Your use of the Licensed Material.
102
+
103
+ f. Licensed Material means the artistic or literary work, database,
104
+ or other material to which the Licensor applied this Public
105
+ License.
106
+
107
+ g. Licensed Rights means the rights granted to You subject to the
108
+ terms and conditions of this Public License, which are limited to
109
+ all Copyright and Similar Rights that apply to Your use of the
110
+ Licensed Material and that the Licensor has authority to license.
111
+
112
+ h. Licensor means the individual(s) or entity(ies) granting rights
113
+ under this Public License.
114
+
115
+ i. Share means to provide material to the public by any means or
116
+ process that requires permission under the Licensed Rights, such
117
+ as reproduction, public display, public performance, distribution,
118
+ dissemination, communication, or importation, and to make material
119
+ available to the public including in ways that members of the
120
+ public may access the material from a place and at a time
121
+ individually chosen by them.
122
+
123
+ j. Sui Generis Database Rights means rights other than copyright
124
+ resulting from Directive 96/9/EC of the European Parliament and of
125
+ the Council of 11 March 1996 on the legal protection of databases,
126
+ as amended and/or succeeded, as well as other essentially
127
+ equivalent rights anywhere in the world.
128
+
129
+ k. You means the individual or entity exercising the Licensed Rights
130
+ under this Public License. Your has a corresponding meaning.
131
+
132
+
133
+ Section 2 -- Scope.
134
+
135
+ a. License grant.
136
+
137
+ 1. Subject to the terms and conditions of this Public License,
138
+ the Licensor hereby grants You a worldwide, royalty-free,
139
+ non-sublicensable, non-exclusive, irrevocable license to
140
+ exercise the Licensed Rights in the Licensed Material to:
141
+
142
+ a. reproduce and Share the Licensed Material, in whole or
143
+ in part; and
144
+
145
+ b. produce, reproduce, and Share Adapted Material.
146
+
147
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
148
+ Exceptions and Limitations apply to Your use, this Public
149
+ License does not apply, and You do not need to comply with
150
+ its terms and conditions.
151
+
152
+ 3. Term. The term of this Public License is specified in Section
153
+ 6(a).
154
+
155
+ 4. Media and formats; technical modifications allowed. The
156
+ Licensor authorizes You to exercise the Licensed Rights in
157
+ all media and formats whether now known or hereafter created,
158
+ and to make technical modifications necessary to do so. The
159
+ Licensor waives and/or agrees not to assert any right or
160
+ authority to forbid You from making technical modifications
161
+ necessary to exercise the Licensed Rights, including
162
+ technical modifications necessary to circumvent Effective
163
+ Technological Measures. For purposes of this Public License,
164
+ simply making modifications authorized by this Section 2(a)
165
+ (4) never produces Adapted Material.
166
+
167
+ 5. Downstream recipients.
168
+
169
+ a. Offer from the Licensor -- Licensed Material. Every
170
+ recipient of the Licensed Material automatically
171
+ receives an offer from the Licensor to exercise the
172
+ Licensed Rights under the terms and conditions of this
173
+ Public License.
174
+
175
+ b. No downstream restrictions. You may not offer or impose
176
+ any additional or different terms or conditions on, or
177
+ apply any Effective Technological Measures to, the
178
+ Licensed Material if doing so restricts exercise of the
179
+ Licensed Rights by any recipient of the Licensed
180
+ Material.
181
+
182
+ 6. No endorsement. Nothing in this Public License constitutes or
183
+ may be construed as permission to assert or imply that You
184
+ are, or that Your use of the Licensed Material is, connected
185
+ with, or sponsored, endorsed, or granted official status by,
186
+ the Licensor or others designated to receive attribution as
187
+ provided in Section 3(a)(1)(A)(i).
188
+
189
+ b. Other rights.
190
+
191
+ 1. Moral rights, such as the right of integrity, are not
192
+ licensed under this Public License, nor are publicity,
193
+ privacy, and/or other similar personality rights; however, to
194
+ the extent possible, the Licensor waives and/or agrees not to
195
+ assert any such rights held by the Licensor to the limited
196
+ extent necessary to allow You to exercise the Licensed
197
+ Rights, but not otherwise.
198
+
199
+ 2. Patent and trademark rights are not licensed under this
200
+ Public License.
201
+
202
+ 3. To the extent possible, the Licensor waives any right to
203
+ collect royalties from You for the exercise of the Licensed
204
+ Rights, whether directly or through a collecting society
205
+ under any voluntary or waivable statutory or compulsory
206
+ licensing scheme. In all other cases the Licensor expressly
207
+ reserves any right to collect such royalties.
208
+
209
+
210
+ Section 3 -- License Conditions.
211
+
212
+ Your exercise of the Licensed Rights is expressly made subject to the
213
+ following conditions.
214
+
215
+ a. Attribution.
216
+
217
+ 1. If You Share the Licensed Material (including in modified
218
+ form), You must:
219
+
220
+ a. retain the following if it is supplied by the Licensor
221
+ with the Licensed Material:
222
+
223
+ i. identification of the creator(s) of the Licensed
224
+ Material and any others designated to receive
225
+ attribution, in any reasonable manner requested by
226
+ the Licensor (including by pseudonym if
227
+ designated);
228
+
229
+ ii. a copyright notice;
230
+
231
+ iii. a notice that refers to this Public License;
232
+
233
+ iv. a notice that refers to the disclaimer of
234
+ warranties;
235
+
236
+ v. a URI or hyperlink to the Licensed Material to the
237
+ extent reasonably practicable;
238
+
239
+ b. indicate if You modified the Licensed Material and
240
+ retain an indication of any previous modifications; and
241
+
242
+ c. indicate the Licensed Material is licensed under this
243
+ Public License, and include the text of, or the URI or
244
+ hyperlink to, this Public License.
245
+
246
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
247
+ reasonable manner based on the medium, means, and context in
248
+ which You Share the Licensed Material. For example, it may be
249
+ reasonable to satisfy the conditions by providing a URI or
250
+ hyperlink to a resource that includes the required
251
+ information.
252
+
253
+ 3. If requested by the Licensor, You must remove any of the
254
+ information required by Section 3(a)(1)(A) to the extent
255
+ reasonably practicable.
256
+
257
+ 4. If You Share Adapted Material You produce, the Adapter's
258
+ License You apply must not prevent recipients of the Adapted
259
+ Material from complying with this Public License.
260
+
261
+
262
+ Section 4 -- Sui Generis Database Rights.
263
+
264
+ Where the Licensed Rights include Sui Generis Database Rights that
265
+ apply to Your use of the Licensed Material:
266
+
267
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
268
+ to extract, reuse, reproduce, and Share all or a substantial
269
+ portion of the contents of the database;
270
+
271
+ b. if You include all or a substantial portion of the database
272
+ contents in a database in which You have Sui Generis Database
273
+ Rights, then the database in which You have Sui Generis Database
274
+ Rights (but not its individual contents) is Adapted Material; and
275
+
276
+ c. You must comply with the conditions in Section 3(a) if You Share
277
+ all or a substantial portion of the contents of the database.
278
+
279
+ For the avoidance of doubt, this Section 4 supplements and does not
280
+ replace Your obligations under this Public License where the Licensed
281
+ Rights include other Copyright and Similar Rights.
282
+
283
+
284
+ Section 5 -- Disclaimer of Warranties and Limitation of Liability.
285
+
286
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
287
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
288
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
289
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
290
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
291
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
292
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
293
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
294
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
295
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
296
+
297
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
298
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
299
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
300
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
301
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
302
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
303
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
304
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
305
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
306
+
307
+ c. The disclaimer of warranties and limitation of liability provided
308
+ above shall be interpreted in a manner that, to the extent
309
+ possible, most closely approximates an absolute disclaimer and
310
+ waiver of all liability.
311
+
312
+
313
+ Section 6 -- Term and Termination.
314
+
315
+ a. This Public License applies for the term of the Copyright and
316
+ Similar Rights licensed here. However, if You fail to comply with
317
+ this Public License, then Your rights under this Public License
318
+ terminate automatically.
319
+
320
+ b. Where Your right to use the Licensed Material has terminated under
321
+ Section 6(a), it reinstates:
322
+
323
+ 1. automatically as of the date the violation is cured, provided
324
+ it is cured within 30 days of Your discovery of the
325
+ violation; or
326
+
327
+ 2. upon express reinstatement by the Licensor.
328
+
329
+ For the avoidance of doubt, this Section 6(b) does not affect any
330
+ right the Licensor may have to seek remedies for Your violations
331
+ of this Public License.
332
+
333
+ c. For the avoidance of doubt, the Licensor may also offer the
334
+ Licensed Material under separate terms or conditions or stop
335
+ distributing the Licensed Material at any time; however, doing so
336
+ will not terminate this Public License.
337
+
338
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
339
+ License.
340
+
341
+
342
+ Section 7 -- Other Terms and Conditions.
343
+
344
+ a. The Licensor shall not be bound by any additional or different
345
+ terms or conditions communicated by You unless expressly agreed.
346
+
347
+ b. Any arrangements, understandings, or agreements regarding the
348
+ Licensed Material not stated herein are separate from and
349
+ independent of the terms and conditions of this Public License.
350
+
351
+
352
+ Section 8 -- Interpretation.
353
+
354
+ a. For the avoidance of doubt, this Public License does not, and
355
+ shall not be interpreted to, reduce, limit, restrict, or impose
356
+ conditions on any use of the Licensed Material that could lawfully
357
+ be made without permission under this Public License.
358
+
359
+ b. To the extent possible, if any provision of this Public License is
360
+ deemed unenforceable, it shall be automatically reformed to the
361
+ minimum extent necessary to make it enforceable. If the provision
362
+ cannot be reformed, it shall be severed from this Public License
363
+ without affecting the enforceability of the remaining terms and
364
+ conditions.
365
+
366
+ c. No term or condition of this Public License will be waived and no
367
+ failure to comply consented to unless expressly agreed to by the
368
+ Licensor.
369
+
370
+ d. Nothing in this Public License constitutes or may be interpreted
371
+ as a limitation upon, or waiver of, any privileges and immunities
372
+ that apply to the Licensor or You, including from the legal
373
+ processes of any jurisdiction or authority.
374
+
375
+
376
+ =======================================================================
377
+
378
+ Creative Commons is not a party to its public
379
+ licenses. Notwithstanding, Creative Commons may elect to apply one of
380
+ its public licenses to material it publishes and in those instances
381
+ will be considered the “Licensor.” The text of the Creative Commons
382
+ public licenses is dedicated to the public domain under the CC0 Public
383
+ Domain Dedication. Except for the limited purpose of indicating that
384
+ material is shared under a Creative Commons public license or as
385
+ otherwise permitted by the Creative Commons policies published at
386
+ creativecommons.org/policies, Creative Commons does not authorize the
387
+ use of the trademark "Creative Commons" or any other trademark or logo
388
+ of Creative Commons without its prior written consent including,
389
+ without limitation, in connection with any unauthorized modifications
390
+ to any of its public licenses or any other arrangements,
391
+ understandings, or agreements concerning use of licensed material. For
392
+ the avoidance of doubt, this paragraph does not form part of the
393
+ public licenses.
394
+
395
+ Creative Commons may be contacted at creativecommons.org.
396
+
README.md ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - credibility
7
+ - misinformation
8
+ - disinformation
9
+ - fact-checking
10
+ - news-credibility
11
+ - domain-credibility
12
+ - media-bias
13
+ - information-integrity
14
+ - ai-safety
15
+ - content-moderation
16
+ task_categories:
17
+ - tabular-classification
18
+ - text-classification
19
+ size_categories:
20
+ - 1K<n<10K
21
+ pretty_name: "CRED-1: Open Multi-Signal Domain Credibility Dataset"
22
+ configs:
23
+ - config_name: default
24
+ data_files:
25
+ - split: train
26
+ path: cred1_current.csv
27
+ ---
28
+
29
+ # CRED-1: Open Multi-Signal Domain Credibility Dataset
30
+
31
+ <p align="center">
32
+ <img src="figures/cred1-domain-credibility-dataset-banner.jpg" alt="CRED-1 Domain Credibility Dataset Banner" width="100%">
33
+ </p>
34
+
35
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.18769460.svg)](https://doi.org/10.5281/zenodo.18769460)
36
+ [![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/)
37
+ [![GitHub](https://img.shields.io/badge/GitHub-aloth%2Fcred--1-181717?logo=github)](https://github.com/aloth/cred-1)
38
+
39
+ **CRED-1** is an open, reproducible domain-level credibility dataset combining multiple openly-licensed source lists with computed enrichment signals. It provides credibility scores for **2,672 domains** known to publish mis/disinformation, conspiracy theories, or other unreliable content.
40
+
41
+ ## Key Features
42
+
43
+ - **2,672 domains** with credibility scores (0.0 to 1.0)
44
+ - **Fully reproducible** Python pipeline rebuilds the dataset from scratch (see [GitHub repo](https://github.com/aloth/cred-1))
45
+ - **Multi-signal scoring** combining source labels, domain age, web popularity, fact-check frequency, and threat intelligence
46
+ - **Privacy-preserving** designed for on-device client-side deployment (no server calls needed)
47
+ - **Two openly-licensed sources**, no proprietary data dependencies
48
+
49
+ ## Quick Start
50
+
51
+ ### Load with `datasets`
52
+
53
+ ```python
54
+ from datasets import load_dataset
55
+
56
+ ds = load_dataset("xlth/CRED-1")
57
+ print(ds["train"][0])
58
+ # {'domain': '100percentfedup.com', 'category': 'mixed', 'credibility_score': 0.173, ...}
59
+ ```
60
+
61
+ ### Lookup a domain
62
+
63
+ ```python
64
+ from datasets import load_dataset
65
+
66
+ ds = load_dataset("xlth/CRED-1", split="train")
67
+ lookup = {row["domain"]: row for row in ds}
68
+
69
+ domain = "infowars.com"
70
+ if domain in lookup:
71
+ print(f"{domain}: credibility = {lookup[domain]['credibility_score']}")
72
+ else:
73
+ print(f"{domain}: not in dataset (treat as neutral)")
74
+ ```
75
+
76
+ ## Dataset Schema
77
+
78
+ | Field | Type | Description |
79
+ |---|---|---|
80
+ | `domain` | string | Domain name (lowercase, no scheme) |
81
+ | `category` | string | Category from source lists (e.g. `fake`, `conspiracy`, `unreliable`, `mixed`, `clickbait`) |
82
+ | `credibility_score` | float | Aggregated credibility score (0.0 = least credible, 1.0 = most credible) |
83
+ | `sources` | int | Number of source lists the domain appears in |
84
+ | `iffy_factual` | string | Factual reporting rating from Iffy.news (VL, L, M, H, VH) |
85
+ | `iffy_bias` | string | Bias rating from Iffy.news (e.g. FN = fake news, CP = conspiracy) |
86
+ | `iffy_score` | float | Normalized Iffy score |
87
+ | `tranco_rank` | int | Tranco web popularity rank (1 = most popular) |
88
+ | `domain_age_years` | float | Age of the domain in years |
89
+ | `domain_registered` | string | ISO 8601 registration date |
90
+ | `factcheck_claims` | int | Count of fact-check claims targeting this domain |
91
+ | `safe_browsing_flagged` | bool | Whether Google Safe Browsing flagged this domain |
92
+ | `score_*` | float | Individual signal contributions to the aggregate score |
93
+
94
+ Full schema in [`CODEBOOK.md`](CODEBOOK.md).
95
+
96
+ ## Files
97
+
98
+ - `cred1_current.csv` (~250 KB): Full dataset, recommended for `load_dataset` and the dataset viewer
99
+ - `cred1_current.json` (~1 MB): Same data as nested JSON with domain as key
100
+ - `cred1_compact.json` (~170 KB): Minimal `{domain: score}` mapping for lightweight on-device lookups
101
+ - `CODEBOOK.md`: Field definitions, scoring methodology, source provenance
102
+ - `figures/`: Project banner
103
+
104
+ ## Intended Use
105
+
106
+ CRED-1 is designed for:
107
+
108
+ - **Browser extensions and on-device clients** that need fast, offline domain credibility lookups
109
+ - **Research on misinformation detection, news verification, and platform governance**
110
+ - **Pre-bunking pipelines** that flag suspicious sources before users engage
111
+ - **Educational and digital-literacy tooling**
112
+
113
+ ## Limitations
114
+
115
+ - Coverage is concentrated on English-language misinformation sources
116
+ - The dataset captures domains, not individual articles; legitimate journalism on otherwise unreliable domains is not distinguished
117
+ - Source lists carry their own biases; consult [`CODEBOOK.md`](CODEBOOK.md) for provenance
118
+
119
+ ## Citation
120
+
121
+ Canonical citation (Zenodo DOI for this dataset):
122
+
123
+ ```bibtex
124
+ @dataset{loth_cred1_2026,
125
+ author = {Loth, Alexander and Kappes, Martin and Pahl, Marc-Oliver},
126
+ title = {{CRED-1}: An Open Multi-Signal Domain Credibility Dataset},
127
+ year = 2026,
128
+ publisher = {Zenodo},
129
+ version = {v1.0},
130
+ doi = {10.5281/zenodo.18769460},
131
+ url = {https://doi.org/10.5281/zenodo.18769460}
132
+ }
133
+ ```
134
+
135
+ Accompanying preprint:
136
+
137
+ ```bibtex
138
+ @article{loth_cred1_preprint_2026,
139
+ author = {Loth, Alexander and Kappes, Martin and Pahl, Marc-Oliver},
140
+ title = {{CRED-1}: An Open Multi-Signal Domain Credibility Dataset for Automated Pre-Bunking of Online Misinformation},
141
+ year = 2026,
142
+ journal = {SSRN Preprint},
143
+ doi = {10.2139/ssrn.6448466},
144
+ url = {https://ssrn.com/abstract=6448466}
145
+ }
146
+ ```
147
+
148
+ ## Links
149
+
150
+ - **GitHub (pipeline + raw sources):** https://github.com/aloth/cred-1
151
+ - **Zenodo archive (canonical):** https://doi.org/10.5281/zenodo.18769460
152
+ - **SSRN preprint:** https://doi.org/10.2139/ssrn.6448466
153
+ - **Blog post:** https://alexloth.com/cred-1-open-domain-credibility-dataset-preprint/
154
+
155
+ ## License
156
+
157
+ CC BY 4.0. Free to use with attribution. See [`LICENSE`](LICENSE).
cred1_compact.json ADDED
The diff for this file is too large to render. See raw diff
 
cred1_current.csv ADDED
The diff for this file is too large to render. See raw diff
 
cred1_current.json ADDED
The diff for this file is too large to render. See raw diff
 
figures/cred1-domain-credibility-dataset-banner.jpg ADDED

Git LFS Details

  • SHA256: e42b0ece2d8d78c0c95045f53d109544a672311752f5bc6cd3e4e8fcc7215eb0
  • Pointer size: 131 Bytes
  • Size of remote file: 204 kB