Skip to content
Snippets Groups Projects
Commit ef0d8a48 authored by Nikolai's avatar Nikolai
Browse files

Merge branch 'master' into dev-mask

parents d6d55b11 e61e3bf1
No related branches found
No related tags found
No related merge requests found
...@@ -383,6 +383,8 @@ class ClassificationProject(object): ...@@ -383,6 +383,8 @@ class ClassificationProject(object):
def _load_data(self): def _load_data(self):
self._w_train_tot = None
try: try:
# if those don't exist, we need to load them from ROOT trees first # if those don't exist, we need to load them from ROOT trees first
...@@ -1142,11 +1144,11 @@ class ClassificationProject(object): ...@@ -1142,11 +1144,11 @@ class ClassificationProject(object):
sig = self.w_train_tot[self.y_train == 1] sig = self.w_train_tot[self.y_train == 1]
ax.hist(bkg, bins=bins, range=range, color="b", alpha=0.5) ax.hist(bkg, bins=bins, range=range, color="b", alpha=0.5)
ax.set_yscale("log") ax.set_yscale("log")
return save_show(plt, fig, os.path.join(self.project_dir, "eventweights_bkg.pdf")) save_show(plt, fig, os.path.join(self.project_dir, "eventweights_bkg.pdf"))
fig, ax = plt.subplots() fig, ax = plt.subplots()
ax.hist(sig, bins=bins, range=range, color="r", alpha=0.5) ax.hist(sig, bins=bins, range=range, color="r", alpha=0.5)
ax.set_yscale("log") ax.set_yscale("log")
return save_show(plt, fig, os.path.join(self.project_dir, "eventweights_sig.pdf")) save_show(plt, fig, os.path.join(self.project_dir, "eventweights_sig.pdf"))
def plot_ROC(self, xlim=(0,1), ylim=(0,1)): def plot_ROC(self, xlim=(0,1), ylim=(0,1)):
...@@ -1612,6 +1614,7 @@ class ClassificationProjectDataFrame(ClassificationProject): ...@@ -1612,6 +1614,7 @@ class ClassificationProjectDataFrame(ClassificationProject):
self._y_test = None self._y_test = None
self._w_train = None self._w_train = None
self._w_test = None self._w_test = None
self._w_train_tot = None
if not self.data_transformed: if not self.data_transformed:
self._transform_data() self._transform_data()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment