Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
network.h
Go to the documentation of this file.
1#ifndef network__HH
2#define network__HH
3#include "TArrow.h"
4#include "TEllipse.h"
5#include "TPaveLabel.h"
6#include "TCanvas.h"
7#include "TH2F.h"
8#include "TFile.h"
9#include "TString.h"
10#include "TDirectory.h"
11#include "TKey.h"
12#include "TText.h"
13
14#include "tmvaglob.h"
15namespace TMVA{
16
17 // this macro prints out a neural network generated by MethodMLP graphically
18 // @author: Matt Jachowski, jachowski@stanford.edu
19
20 void draw_layer_labels( Int_t nLayers );
21 void draw_input_labels(TString dataset,Int_t nInputs, Double_t* cy,
22 Double_t rad, Double_t layerWidth);
23 void draw_layer (TString dataset, TCanvas* c, TH2F* h, Int_t iHist, Int_t nLayers, Double_t maxWeight );
24 void draw_synapse ( Double_t cx1, Double_t cy1, Double_t cx2, Double_t cy2,
25 Double_t rad1, Double_t rad2, Double_t weightNormed );
26 TString* get_var_names (TString dataset, Int_t nVars );
27
28 void draw_network(TString dataset, TFile* f, TDirectory* d, const TString& hName = "weights_hist",
29 Bool_t movieMode = kFALSE, const TString& epoch = "" );
30
32 Double_t radx, Double_t rady, Int_t whichActivation);
33 void network(TString dataset, TString fin = "TMVA.root", Bool_t useTMVAStyle = kTRUE );
34
35}
36#endif
#define d(i)
Definition RSha256.hxx:102
#define f(i)
Definition RSha256.hxx:104
#define c(i)
Definition RSha256.hxx:101
#define h(i)
Definition RSha256.hxx:106
bool Bool_t
Definition RtypesCore.h:63
constexpr Bool_t kFALSE
Definition RtypesCore.h:101
double Double_t
Definition RtypesCore.h:59
constexpr Bool_t kTRUE
Definition RtypesCore.h:100
The Canvas class.
Definition TCanvas.h:23
Describe directory structure in memory.
Definition TDirectory.h:45
A ROOT file is composed of a header, followed by consecutive data records (TKey instances) with a wel...
Definition TFile.h:53
2-D histogram with a float per channel (see TH1 documentation)
Definition TH2.h:295
Basic string class.
Definition TString.h:139
create variable transformations
TString * get_var_names(TString dataset, Int_t nVars)
void draw_layer(TString dataset, TCanvas *c, TH2F *h, Int_t iHist, Int_t nLayers, Double_t maxWeight)
void draw_activation(TCanvas *c, Double_t cx, Double_t cy, Double_t radx, Double_t rady, Int_t whichActivation)
void draw_network(TString dataset, TFile *f, TDirectory *d, const TString &hName="weights_hist", Bool_t movieMode=kFALSE, const TString &epoch="")
void draw_input_labels(TString dataset, Int_t nInputs, Double_t *cy, Double_t rad, Double_t layerWidth)
void draw_layer_labels(Int_t nLayers)
void draw_synapse(Double_t cx1, Double_t cy1, Double_t cx2, Double_t cy2, Double_t rad1, Double_t rad2, Double_t weightNormed)
void network(TString dataset, TString fin="TMVA.root", Bool_t useTMVAStyle=kTRUE)