treelite
runtime
native
include
treelite
entry.h
1
#ifndef TREELITE_ENTRY_H_
2
#define TREELITE_ENTRY_H_
3
4
/* Note: Make sure to use slash-asterisk form of comments in this file
5
(like this one). Do not use double-slash (//). */
6
11
union
TreelitePredictorEntry
{
12
int
missing;
13
float
fvalue;
14
// may contain extra fields later, such as qvalue
15
};
16
17
#endif
/* TREELITE_ENTRY_H_ */
TreelitePredictorEntry
data layout. The value -1 signifies the missing value. When the "missing" field is set to -1...
Definition:
entry.h:11
Generated by
1.8.13