Uses of Class
org.apache.wayang.commons.util.profiledb.model.Experiment
Packages that use Experiment
Package
Description
-
Uses of Experiment in org.apache.wayang.apps.sgd
Methods in org.apache.wayang.apps.sgd with parameters of type ExperimentModifier and TypeMethodDescriptiondouble[]
SGDImpl.apply
(String datasetUrl, int datasetSize, int features, int maxIterations, double accuracy, int sampleSize, Experiment experiment) double[]
SGDImprovedImpl.apply
(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 ExperimentModifier and TypeMethodDescriptionProfileDB.load()
BringExperiment
s from current Storage to local variableProfileDB.load
(InputStream inputStream) BringExperiment
s from current Storage to local variableMethods in org.apache.wayang.commons.util.profiledb with parameters of type ExperimentModifier and TypeMethodDescriptionvoid
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 ExperimentModifier and TypeMethodDescriptionvoid
ProfileDB.append
(Collection<Experiment> experiments) Related to file based storage, Receive a Collection ofExperiment
s and persist them at the end of a filevoid
ProfileDB.save
(Collection<Experiment> experiments) Receive a Collection ofExperiment
s and persist themvoid
ProfileDB.save
(Collection<Experiment> experiments, 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 ExperimentModifier and TypeMethodDescriptionStopWatch.getExperiment()
Get theExperiment
managed by this instance.Constructors in org.apache.wayang.commons.util.profiledb.instrumentation with parameters of type ExperimentModifierConstructorDescriptionStopWatch
(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 ExperimentModifier and TypeMethodDescriptionExperiment.withDescription
(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 ExperimentModifier and TypeMethodDescriptionFileStorage.load()
LoadExperiment
s from aFile
.JDBCStorage.load()
LoadExperiment
s from aFile
.abstract Collection<Experiment>
Storage.load()
BringExperiment
s from current Storage to local variableStorage.load
(BufferedReader reader) LoadExperiment
s from anReader
.Storage.load
(InputStream inputStream) LoadExperiment
s from anInputStream
.Methods in org.apache.wayang.commons.util.profiledb.storage with parameters of type ExperimentModifier and TypeMethodDescriptionvoid
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 ExperimentModifier and TypeMethodDescriptionvoid
FileStorage.append
(Collection<Experiment> experiments) AppendExperiment
s to aFile
.void
JDBCStorage.append
(Collection<Experiment> experiments) AppendExperiment
s to aFile
.abstract void
Storage.append
(Collection<Experiment> experiments) Related to file based storage, Receive a Collection ofExperiment
s and persist them at the end of a filevoid
FileStorage.save
(Collection<Experiment> experiments) WriteExperiment
s to aFile
.void
JDBCStorage.save
(Collection<Experiment> experiments) WriteExperiment
s to aFile
.abstract void
Storage.save
(Collection<Experiment> experiments) Receive a Collection ofExperiment
s and persist themvoid
Storage.save
(Collection<Experiment> experiments, OutputStream outputStream) WriteExperiment
s to anOutputStream
.void
Storage.save
(Collection<Experiment> experiments, Writer writer) WriteExperiment
s to aWriter
. -
Uses of Experiment in org.apache.wayang.core.api
Methods in org.apache.wayang.core.api that return ExperimentModifier and TypeMethodDescriptionJob.getExperiment()
Provide theExperiment
being recorded with the execution of this instance.Methods in org.apache.wayang.core.api with parameters of type ExperimentModifier and TypeMethodDescriptionWayangContext.createJob
(String jobName, WayangPlan wayangPlan, Experiment experiment, String... udfJars) Create a newJob
that should execute the givenWayangPlan
eventually.void
WayangContext.execute
(String jobName, WayangPlan wayangPlan, Experiment experiment, String... udfJars) Execute a plan.