Logo ROOT   6.16/01
Reference Guide
ClassificationKeras.py
Go to the documentation of this file.
1#!/usr/bin/env python
2
3from ROOT import TMVA, TFile, TTree, TCut
4from subprocess import call
5from os.path import isfile
6
7from keras.models import Sequential
8from keras.layers import Dense, Activation
9from keras.regularizers import l2
10from keras.optimizers import SGD
11
12# Setup TMVA
15
16output = TFile.Open('TMVA.root', 'RECREATE')
17factory = TMVA.Factory('TMVAClassification', output,
18 '!V:!Silent:Color:DrawProgressBar:Transformations=D,G:AnalysisType=Classification')
19
20# Load data
21if not isfile('tmva_class_example.root'):
22 call(['curl', '-O', 'http://root.cern.ch/files/tmva_class_example.root'])
23
24data = TFile.Open('tmva_class_example.root')
25signal = data.Get('TreeS')
26background = data.Get('TreeB')
27
28dataloader = TMVA.DataLoader('dataset')
29for branch in signal.GetListOfBranches():
30 dataloader.AddVariable(branch.GetName())
31
32dataloader.AddSignalTree(signal, 1.0)
33dataloader.AddBackgroundTree(background, 1.0)
34dataloader.PrepareTrainingAndTestTree(TCut(''),
35 'nTrain_Signal=4000:nTrain_Background=4000:SplitMode=Random:NormMode=NumEvents:!V')
36
37# Generate model
38
39# Define model
40model = Sequential()
41model.add(Dense(64, activation='relu', W_regularizer=l2(1e-5), input_dim=4))
42model.add(Dense(2, activation='softmax'))
43
44# Set loss and optimizer
45model.compile(loss='categorical_crossentropy',
46 optimizer=SGD(lr=0.01), metrics=['accuracy', ])
47
48# Store model to file
49model.save('model.h5')
50model.summary()
51
52# Book methods
53factory.BookMethod(dataloader, TMVA.Types.kFisher, 'Fisher',
54 '!H:!V:Fisher:VarTransform=D,G')
55factory.BookMethod(dataloader, TMVA.Types.kPyKeras, 'PyKeras',
56 'H:!V:VarTransform=D,G:FilenameModel=model.h5:NumEpochs=20:BatchSize=32')
57
58# Run training, test and evaluation
59factory.TrainAllMethods()
60factory.TestAllMethods()
61factory.EvaluateAllMethods()
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseGeneralPurpose, Int_t netopt=0)
Create / open a file.
Definition: TFile.cxx:3975
This is the main MVA steering class.
Definition: Factory.h:81
static void PyInitialize()
Initialize Python interpreter.
static Tools & Instance()
Definition: Tools.cxx:75