Datasets:

Modalities:
Image
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
SvenKlaassen commited on
Commit
48211a9
·
verified ·
1 Parent(s): 33d27eb

update description

Browse files
Files changed (1) hide show
  1. README.md +55 -2
README.md CHANGED
@@ -91,7 +91,60 @@ The dataset is generated according to the description in [DoubleMLDeep: Estimati
91
 
92
  ### Dataset Description & Usage
93
 
94
- The dataset contains the following columns:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
 
96
  ### Dataset Sources
97
 
@@ -174,7 +227,7 @@ The data fields can be devided into several categories:
174
  - `cond_exp_y` (`float64`): Expected value of `Y` conditional on `D_1`, `sentiment`, `label` and `price`
175
  - `l1` (`float64`): Expected value of `Y` conditional on `sentiment`, `label` and `price`
176
  - `m1` (`float64`): Expected value of `D_1` conditional on `sentiment`, `label` and `price`
177
- - `g1` (`float64`): Additive component of `Y` based on `sentiment`, `label` and `price`
178
 
179
  ## Limitations
180
 
 
91
 
92
  ### Dataset Description & Usage
93
 
94
+ The dataset is a semi-synthetic dataset as a benchmark for treatment effect estimation with multimodal confounding. The outcome
95
+ variable `Y` is generated according to a partially linear model
96
+ $$
97
+ Y = \theta_0 D_1 + g_1(X) + \varepsilon
98
+ $$
99
+ with an constant treatment effect of
100
+ $$\theta_0=0.5.$$
101
+ The target variables `sentiment`, `label` and `price` are used to generate credible confounding by affecting both `Y` and `D_1`.
102
+ This confounding is generated to be negative, such that estimates of the treatment effect should generally be smaller than `0.5`.
103
+
104
+ For a more detailed description on the data generating process, see [DoubleMLDeep: Estimation of Causal Effects with Multimodal Data](https://arxiv.org/abs/2402.01785).
105
+
106
+ The dataset includes the corresponding target variables `sentiment`, `label`, `price` and oracle values such as `cond_exp_y`, `l1`, `m1`, `g1`.
107
+ These values are included for convenience for e.g. benchmarking against optimal estimates, but should not be used in the model.
108
+ Further, several tabular features are highly correlated, such that it may be helpful to drop features such as `x`, `y`, `z`.
109
+
110
+ An example looks as follows:
111
+
112
+ ```
113
+ {'cond_exp_y': 2.367230022801451,
114
+ 'm1': -2.7978920933712907,
115
+ 'g1': 4.015536418538365,
116
+ 'l1': 2.61659037185272,
117
+ 'Y': 3.091541535115522,
118
+ 'D_1': -3.2966127914738275,
119
+ 'carat': 0.5247285289349821,
120
+ 'depth': 58.7,
121
+ 'table': 59.0,
122
+ 'price': 9.7161333532141,
123
+ 'x': 7.87,
124
+ 'y': 7.78,
125
+ 'z': 4.59,
126
+ 'review': "I really liked this Summerslam due to the look of the arena, the curtains and just the look overall was interesting to me for some reason. Anyways, this could have been one of the best Summerslam's ever if the WWF didn't have Lex Luger in the main event against Yokozuna, now for it's time it was ok to have a huge fat man vs a strong man but I'm glad times have changed. It was a terrible main event just like every match Luger is in is terrible. Other matches on the card were Razor Ramon vs Ted Dibiase, Steiner Brothers vs Heavenly Bodies, Shawn Michaels vs Curt Hening, this was the event where Shawn named his big monster of a body guard Diesel, IRS vs 1-2-3 Kid, Bret Hart first takes on Doink then takes on Jerry Lawler and stuff with the Harts and Lawler was always very interesting, then Ludvig Borga destroyed Marty Jannetty, Undertaker took on Giant Gonzalez in another terrible match, The Smoking Gunns and Tatanka took on Bam Bam Bigelow and the Headshrinkers, and Yokozuna defended the world title against Lex Luger this match was boring and it has a terrible ending. However it deserves 8/10",
127
+ 'sentiment': 'positive',
128
+ 'label': 6,
129
+ 'cut_Good': False,
130
+ 'cut_Ideal': False,
131
+ 'cut_Premium': True,
132
+ 'cut_Very Good': False,
133
+ 'color_E': False,
134
+ 'color_F': True,
135
+ 'color_G': False,
136
+ 'color_H': False,
137
+ 'color_I': False,
138
+ 'color_J': False,
139
+ 'clarity_IF': False,
140
+ 'clarity_SI1': False,
141
+ 'clarity_SI2': False,
142
+ 'clarity_VS1': False,
143
+ 'clarity_VS2': True,
144
+ 'clarity_VVS1': False,
145
+ 'clarity_VVS2': False,
146
+ 'image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=32x32>}
147
+ ```
148
 
149
  ### Dataset Sources
150
 
 
227
  - `cond_exp_y` (`float64`): Expected value of `Y` conditional on `D_1`, `sentiment`, `label` and `price`
228
  - `l1` (`float64`): Expected value of `Y` conditional on `sentiment`, `label` and `price`
229
  - `m1` (`float64`): Expected value of `D_1` conditional on `sentiment`, `label` and `price`
230
+ - `g1` (`float64`): Additive component of `Y` based on `sentiment`, `label` and `price` (see Dataset Description)
231
 
232
  ## Limitations
233