Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ApplicationClassificationKeras.py
Go to the documentation of this file.
1#!/usr/bin/env python
2## \file
3## \ingroup tutorial_tmva_keras
4## \notebook -nodraw
5## This tutorial shows how to apply a trained model to new data.
6##
7## \macro_code
8##
9## \date 2017
10## \author TMVA Team
11
12from ROOT import TMVA, TFile, TString
13from array import array
14from subprocess import call
15from os.path import isfile
16
17# Setup TMVA
20reader = TMVA.Reader("Color:!Silent")
21
22# Load data
24data = TFile.Open("http://root.cern.ch/files/tmva_class_example.root", "CACHEREAD");
25if data is None:
26 raise FileNotFoundError("Input file cannot be downloaded - exit")
27
28signal = data.Get('TreeS')
29background = data.Get('TreeB')
30
31branches = {}
32for branch in signal.GetListOfBranches():
33 branchName = branch.GetName()
34 branches[branchName] = array('f', [-999])
35 reader.AddVariable(branchName, branches[branchName])
36 signal.SetBranchAddress(branchName, branches[branchName])
37 background.SetBranchAddress(branchName, branches[branchName])
38
39# Book methods
40reader.BookMVA('PyKeras', TString('dataset/weights/TMVAClassification_PyKeras.weights.xml'))
41
42# Print some example classifications
43print('Some signal example classifications:')
44for i in range(20):
45 signal.GetEntry(i)
46 print(reader.EvaluateMVA('PyKeras'))
47print('')
48
49print('Some background example classifications:')
50for i in range(20):
51 background.GetEntry(i)
52 print(reader.EvaluateMVA('PyKeras'))
static Bool_t SetCacheFileDir(ROOT::Internal::TStringView cacheDir, Bool_t operateDisconnected=kTRUE, Bool_t forceCacheread=kFALSE)
Definition TFile.h:323
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Create / open a file.
Definition TFile.cxx:4053
static void PyInitialize()
Initialize Python interpreter.
The Reader class serves to use the MVAs in a specific analysis context.
Definition Reader.h:64
static Tools & Instance()
Definition Tools.cxx:71
Basic string class.
Definition TString.h:139