Skip to content

Commit 84e2309

Browse files
committed
remove missing variable
1 parent c8d77e3 commit 84e2309

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

hbw/config/dl/variables.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,12 @@ def add_dl_ml_variables(config: od.Config) -> None:
172172
binning=(40, 0, 3.2),
173173
x_title=r"$\Delta\Phi(bb,\nu)$",
174174
)
175-
config.add_variable(
176-
name="mli_dr_bb_l",
177-
expression="mli_dr_bb_l",
178-
binning=(40, 0, 8),
179-
x_title=r"$\Delta R(bb,l)$",
180-
)
175+
# config.add_variable(
176+
# name="mli_dr_bb_l",
177+
# expression="mli_dr_bb_l",
178+
# binning=(40, 0, 8),
179+
# x_title=r"$\Delta R(bb,l)$",
180+
# )
181181
config.add_variable(
182182
name="mli_mll",
183183
expression="mli_mll",

hbw/ml/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ def prepare_inputs(
282282
for fn in proc_inst.x.filenames:
283283
events = ak.from_parquet(fn)
284284
if len(events) == 0:
285-
logger.warning("File {fn} of process {proc_inst.name} is empty and will be skipped")
285+
logger.warning(f"File {fn} of process {proc_inst.name} is empty and will be skipped")
286286
continue
287287
# check that all relevant input features are present
288288
if not set(self.input_features).issubset(set(events.fields)):

hbw/ml/derived/dl.py

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ class DenseClassifierDL(ModelFitMixin, DenseModelMixin, MLClassifierBase):
7171
"mli_min_dr_llbb",
7272
"mli_dphi_bb_nu", "mli_dphi_bb_llMET", "mli_mllMET",
7373
"mli_mbbllMET", "mli_dr_bb_llMET",
74-
"mli_dr_bb_l",
7574
# VBF features
7675
"mli_vbf_deta", "mli_vbf_invmass", "mli_vbf_tag",
7776
# low-level features

hbw/production/ml_inputs.py

-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,6 @@ def dl_ml_inputs_init(self: Producer) -> None:
298298
"mli_min_dr_llbb",
299299
"mli_dphi_bb_nu", "mli_dphi_bb_llMET", "mli_mllMET",
300300
"mli_mbbllMET", "mli_dr_bb_llMET",
301-
"mli_dr_bb_l",
302301
# VBF features
303302
"mli_vbf_deta", "mli_vbf_invmass", "mli_vbf_tag",
304303
# low-level features

0 commit comments

Comments
 (0)