Interface | Description |
---|---|
Log.Tag |
Tags for log messages
|
Class | Description |
---|---|
ByteBufferInputStream | |
Check | |
Counter | |
D3Plot |
Helper class to plot simple 2D scatter plots.
|
FileIntegrityChecker | |
FrameUtils | |
GLMRunner | |
IndentingAppender | |
JCodeGen | |
JsonUtil | |
JStackCollectorTask | |
LinuxProcFileReader |
Linux /proc file reader.
|
Log |
Log for H2O.
|
Log.LogStr | |
Log.Wrapper | |
LogCollectorTask | |
ModelUtils |
Shared static code to support modeling, prediction, and scoring.
|
MRUtils | |
MRUtils.ClassDist |
Compute the class distribution from a class label vector
(not counting missing values)
Usage 1: Label vector is categorical
------------------------------------
Vec label = ...;
assert(label.isEnum());
long[] dist = new ClassDist(label).doAll(label).dist();
Usage 2: Label vector is numerical
----------------------------------
Vec label = ...;
int num_classes = ...;
assert(label.isInt());
long[] dist = new ClassDist(num_classes).doAll(label).dist();
|
OSUtils | |
ParamUtils |
A helper class proving queries over Iced objects parameters.
|
ProfileCollectorTask | |
ProfileCollectorTask.NodeProfile | |
RemoveAllKeysTask | |
RIStream | |
RString |
A replaceable string that allows very easy and simple replacements.
|
SB | |
TimelineSnapshot |
Wrapper around timeline snapshot.
|
TreeRenderer | |
UIUtils | |
UserSpecifiedNetwork |
Data structure for holding network info specified by the user on the command line.
|
Utils | |
Utils.AtomicDoubleArray | |
Utils.AtomicFloatArray | |
Utils.AtomicIntArray | |
Utils.AtomicLongArray | |
Utils.IcedArrayList<T extends Iced> |
Simple wrapper around ArrayList with support for H2O serialization
|
Utils.IcedDouble | |
Utils.IcedHashMap<K extends Iced,V extends Iced> |
Simple wrapper around HashMap with support for H2O serialization
|
Utils.IcedInt | |
Utils.IcedLong | |
VAUtils |
Enum | Description |
---|---|
Log.Tag.Kind |
What kind of message?
|
Log.Tag.Sys |
Which subsystem of h2o?
|
Exception | Description |
---|---|
Utils.ExpectedExceptionForDebug |