Datasets:

Modalities:
Text
Formats:
parquet
DOI:
Libraries:
Datasets
Dask
License:
poppingtonic commited on
Commit
223da8b
·
1 Parent(s): 49c6561

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md CHANGED
@@ -1,3 +1,57 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+ # Dataset Release: Indirect Object Identification
5
+ `mecha_ioi` is a pair of datasets tailored for the Indirect Object Identification task, where sentences are generated from the following set of templates:
6
+ The purpose of this dataset is to facilitate interpretability research, inspired by the paper
7
+ _Interpretability in the Wild: a Circuit for Indirect Object Identification in GPT-2 small_, from Redwood Research. We are not affiliated with Redwood Research,
8
+ and release this dataset to contribute to the collective research effort behind understanding how Transformer language models perform this task.
9
+
10
+ - BABA
11
+ ```
12
+ baba_templates = [
13
+ "Then, {B} and {A} went to the {PLACE}. {B} gave a {OBJECT} to {A}",
14
+ "Then, {B} and {A} had a lot of fun at the {PLACE}. {B} gave a {OBJECT} to {A}",
15
+ "Then, {B} and {A} were working at the {PLACE}. {B} decided to give a {OBJECT} to {A}",
16
+ "Then, {B} and {A} were thinking about going to the {PLACE}. {B} wanted to give a {OBJECT} to {A}",
17
+ "Then, {B} and {A} had a long argument, and afterwards {B} said to {A}",
18
+ "After {B} and {A} went to the {PLACE}, {B} gave a {OBJECT} to {A}",
19
+ "When {B} and {A} got a {OBJECT} at the {PLACE}, {B} decided to give it to {A}",
20
+ "When {B} and {A} got a {OBJECT} at the {PLACE}, {B} decided to give the {OBJECT} to {A}",
21
+ "While {B} and {A} were working at the {PLACE}, {B} gave a {OBJECT} to {A}",
22
+ "While {B} and {A} were commuting to the {PLACE}, {B} gave a {OBJECT} to {A}",
23
+ "After the lunch, {B} and {A} went to the {PLACE}. {B} gave a {OBJECT} to {A}",
24
+ "Afterwards, {B} and {A} went to the {PLACE}. {B} gave a {OBJECT} to {A}",
25
+ "Then, {B} and {A} had a long argument. Afterwards {B} said to {A}",
26
+ "The {PLACE} {B} and {A} went to had a {OBJECT}. {B} gave it to {A}",
27
+ "Friends {B} and {A} found a {OBJECT} at the {PLACE}. {B} gave it to {A}",
28
+ ]
29
+ ```
30
+
31
+ - ABBA
32
+ ```
33
+ abba_templates = [
34
+ "Then, {A} and {B} went to the {PLACE}. {B} gave a {OBJECT} to {A}",
35
+ "Then, {A} and {B} had a lot of fun at the {PLACE}. {B} gave a {OBJECT} to {A}",
36
+ "Then, {A} and {B} were working at the {PLACE}. {B} decided to give a {OBJECT} to {A}",
37
+ "Then, {A} and {B} were thinking about going to the {PLACE}. {B} wanted to give a {OBJECT} to {A}",
38
+ "Then, {A} and {B} had a long argument, and afterwards {B} said to {A}",
39
+ "After {A} and {B} went to the {PLACE}, {B} gave a {OBJECT} to {A}",
40
+ "When {A} and {B} got a {OBJECT} at the {PLACE}, {B} decided to give it to {A}",
41
+ "When {A} and {B} got a {OBJECT} at the {PLACE}, {B} decided to give the {OBJECT} to {A}",
42
+ "While {A} and {B} were working at the {PLACE}, {B} gave a {OBJECT} to {A}",
43
+ "While {A} and {B} were commuting to the {PLACE}, {B} gave a {OBJECT} to {A}",
44
+ "After the lunch, {A} and {B} went to the {PLACE}. {B} gave a {OBJECT} to {A}",
45
+ "Afterwards, {A} and {B} went to the {PLACE}. {B} gave a {OBJECT} to {A}",
46
+ "Then, {A} and {B} had a long argument. Afterwards {B} said to {A}",
47
+ "The {PLACE} {A} and {B} went to had a {OBJECT}. {B} gave it to {A}",
48
+ "Friends {A} and {B} found a {OBJECT} at the {PLACE}. {B} gave it to {A}",
49
+ ]
50
+ ```
51
+
52
+ ```
53
+ @misc{muhia2022mechaioi,
54
+ title={A dataset for indirect object identification},
55
+ author={Brian Muhia}
56
+ }
57
+ ```