Uses of Class
org.apache.wayang.commons.util.profiledb.model.Experiment
-
-
Uses of Experiment in org.apache.wayang.apps.sgd
Methods in org.apache.wayang.apps.sgd with parameters of type Experiment Modifier and Type Method Description double[]
SGDImpl. apply(java.lang.String datasetUrl, int datasetSize, int features, int maxIterations, double accuracy, int sampleSize, Experiment experiment)
double[]
SGDImprovedImpl. apply(java.lang.String datasetUrl, int datasetSize, int features, int maxIterations, double accuracy, int sampleSize, Experiment experiment)
-
Uses of Experiment in org.apache.wayang.commons.util.profiledb
Methods in org.apache.wayang.commons.util.profiledb that return types with arguments of type Experiment Modifier and Type Method Description java.util.Collection<Experiment>
ProfileDB. load()
BringExperiment
s from current Storage to local variablejava.util.Collection<Experiment>
ProfileDB. load(java.io.InputStream inputStream)
BringExperiment
s from current Storage to local variableMethods in org.apache.wayang.commons.util.profiledb with parameters of type Experiment Modifier and Type Method Description void
ProfileDB. append(Experiment... experiments)
Related to file based storage, Receive an array ofExperiment
s and persist them at the end of a filevoid
ProfileDB. save(Experiment... experiments)
Receive an array ofExperiment
s and persist themMethod parameters in org.apache.wayang.commons.util.profiledb with type arguments of type Experiment Modifier and Type Method Description void
ProfileDB. append(java.util.Collection<Experiment> experiments)
Related to file based storage, Receive a Collection ofExperiment
s and persist them at the end of a filevoid
ProfileDB. save(java.util.Collection<Experiment> experiments)
Receive a Collection ofExperiment
s and persist themvoid
ProfileDB. save(java.util.Collection<Experiment> experiments, java.io.OutputStream outputStream)
Receive a Collection ofExperiment
s and persist them -
Uses of Experiment in org.apache.wayang.commons.util.profiledb.instrumentation
Methods in org.apache.wayang.commons.util.profiledb.instrumentation that return Experiment Modifier and Type Method Description Experiment
StopWatch. getExperiment()
Get theExperiment
managed by this instance.Constructors in org.apache.wayang.commons.util.profiledb.instrumentation with parameters of type Experiment Constructor Description StopWatch(Experiment experiment)
Creates a new instance for the givenExperiment
. -
Uses of Experiment in org.apache.wayang.commons.util.profiledb.model
Methods in org.apache.wayang.commons.util.profiledb.model that return Experiment Modifier and Type Method Description Experiment
Experiment. withDescription(java.lang.String description)
Adds a description for this instance. -
Uses of Experiment in org.apache.wayang.commons.util.profiledb.storage
Methods in org.apache.wayang.commons.util.profiledb.storage that return types with arguments of type Experiment Modifier and Type Method Description java.util.Collection<Experiment>
FileStorage. load()
LoadExperiment
s from aFile
.java.util.Collection<Experiment>
JDBCStorage. load()
LoadExperiment
s from aFile
.abstract java.util.Collection<Experiment>
Storage. load()
BringExperiment
s from current Storage to local variablejava.util.Collection<Experiment>
Storage. load(java.io.BufferedReader reader)
LoadExperiment
s from anReader
.java.util.Collection<Experiment>
Storage. load(java.io.InputStream inputStream)
LoadExperiment
s from anInputStream
.Methods in org.apache.wayang.commons.util.profiledb.storage with parameters of type Experiment Modifier and Type Method Description void
FileStorage. append(Experiment... experiments)
AppendExperiment
s to aFile
.void
JDBCStorage. append(Experiment... experiments)
AppendExperiment
s to aFile
.abstract void
Storage. append(Experiment... experiments)
Related to file based storage, Receive an array ofExperiment
s and persist them at the end of a filevoid
FileStorage. save(Experiment... experiments)
WriteExperiment
s to aFile
.void
JDBCStorage. save(Experiment... experiments)
WriteExperiment
s to aFile
.abstract void
Storage. save(Experiment... experiments)
Receive an array ofExperiment
s and persist themMethod parameters in org.apache.wayang.commons.util.profiledb.storage with type arguments of type Experiment Modifier and Type Method Description void
FileStorage. append(java.util.Collection<Experiment> experiments)
AppendExperiment
s to aFile
.void
JDBCStorage. append(java.util.Collection<Experiment> experiments)
AppendExperiment
s to aFile
.abstract void
Storage. append(java.util.Collection<Experiment> experiments)
Related to file based storage, Receive a Collection ofExperiment
s and persist them at the end of a filevoid
FileStorage. save(java.util.Collection<Experiment> experiments)
WriteExperiment
s to aFile
.void
JDBCStorage. save(java.util.Collection<Experiment> experiments)
WriteExperiment
s to aFile
.abstract void
Storage. save(java.util.Collection<Experiment> experiments)
Receive a Collection ofExperiment
s and persist themvoid
Storage. save(java.util.Collection<Experiment> experiments, java.io.OutputStream outputStream)
WriteExperiment
s to anOutputStream
.void
Storage. save(java.util.Collection<Experiment> experiments, java.io.Writer writer)
WriteExperiment
s to aWriter
. -
Uses of Experiment in org.apache.wayang.core.api
Methods in org.apache.wayang.core.api that return Experiment Modifier and Type Method Description Experiment
Job. getExperiment()
Provide theExperiment
being recorded with the execution of this instance.Methods in org.apache.wayang.core.api with parameters of type Experiment Modifier and Type Method Description Job
WayangContext. createJob(java.lang.String jobName, WayangPlan wayangPlan, Experiment experiment, java.lang.String... udfJars)
Create a newJob
that should execute the givenWayangPlan
eventually.void
WayangContext. execute(java.lang.String jobName, WayangPlan wayangPlan, Experiment experiment, java.lang.String... udfJars)
Execute a plan.
-