Example of a Multi Layer Perceptron For a LEP search for invisible Higgs boson, a neural network was used to separate the signal from the background passing some selection cuts.
Here is a simplified version of this network, taking into account only WW events.
Processing /builddir/build/BUILD/root-6.10.06/tutorials/mlp/mlpHiggs.C...
Training the Neural Network
Epoch: 0 learn=0.12736 test=0.126464
Epoch: 10 learn=0.0996172 test=0.0942362
Epoch: 20 learn=0.0939029 test=0.0884323
Epoch: 30 learn=0.0912455 test=0.0880184
Epoch: 40 learn=0.0910415 test=0.0885831
Epoch: 50 learn=0.0906613 test=0.0877694
Epoch: 60 learn=0.0900227 test=0.0871867
Epoch: 70 learn=0.0894503 test=0.0858693
Epoch: 80 learn=0.0892068 test=0.0852611
Epoch: 90 learn=0.0886654 test=0.0857397
Epoch: 99 learn=0.0883076 test=0.0856223
Training done.
test.py created.
Network with structure: @msumf,@ptsumf,@acolin:5:3:type
inputs with low values in the differences plot may not be needed
@msumf -> 0.0179748 +/- 0.0155241
@ptsumf -> 0.0309832 +/- 0.0429113
@acolin -> 0.0346543 +/- 0.0470018
void mlpHiggs(
Int_t ntrain=100) {
const char *fname = "mlpHiggs.root";
} else {
printf("accessing %s file from http://root.cern.ch/files\n",fname);
}
if (!input) return;
TTree *simu =
new TTree(
"MonteCarlo",
"Filtered Monte Carlo Events");
Float_t ptsumf, qelep, nch, msumf, minvis, acopl, acolin;
simu->
Branch(
"ptsumf", &ptsumf,
"ptsumf/F");
simu->
Branch(
"qelep", &qelep,
"qelep/F");
simu->
Branch(
"nch", &nch,
"nch/F");
simu->
Branch(
"msumf", &msumf,
"msumf/F");
simu->
Branch(
"minvis", &minvis,
"minvis/F");
simu->
Branch(
"acopl", &acopl,
"acopl/F");
simu->
Branch(
"acolin", &acolin,
"acolin/F");
simu->
Branch(
"type", &type,
"type/I");
type = 1;
for (i = 0; i < sig_filtered->
GetEntries(); i++) {
}
type = 0;
}
"ptsumf",simu,"Entry$%2","(Entry$+1)%2");
mlp->
Train(ntrain,
"text,graph,update=10");
ana.GatherInformations();
ana.CheckNetwork();
ana.DrawDInputs();
ana.DrawNetwork(0,"type==1","type==0");
TH1F *bg =
new TH1F(
"bgh",
"NN output", 50, -.5, 1.5);
TH1F *sig =
new TH1F(
"sigh",
"NN output", 50, -.5, 1.5);
params[0] = msumf;
params[1] = ptsumf;
params[2] = acolin;
}
for (i = 0; i < sig_filtered->
GetEntries(); i++) {
params[0] = msumf;
params[1] = ptsumf;
params[2] = acolin;
}
legend->
AddEntry(bg,
"Background (WW)");
legend->
AddEntry(sig,
"Signal (Higgs)");
delete input;
}
- Author
- Christophe Delaere
Definition in file mlpHiggs.C.