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()BringExperiments from current Storage to local variableProfileDB.load(InputStream inputStream) BringExperiments from current Storage to local variableMethods in org.apache.wayang.commons.util.profiledb with parameters of type ExperimentModifier and TypeMethodDescriptionvoidProfileDB.append(Experiment... experiments) Related to file based storage, Receive an array ofExperiments and persist them at the end of a filevoidProfileDB.save(Experiment... experiments) Receive an array ofExperiments and persist themMethod parameters in org.apache.wayang.commons.util.profiledb with type arguments of type ExperimentModifier and TypeMethodDescriptionvoidProfileDB.append(Collection<Experiment> experiments) Related to file based storage, Receive a Collection ofExperiments and persist them at the end of a filevoidProfileDB.save(Collection<Experiment> experiments) Receive a Collection ofExperiments and persist themvoidProfileDB.save(Collection<Experiment> experiments, OutputStream outputStream) Receive a Collection ofExperiments 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 theExperimentmanaged 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()LoadExperiments from aFile.JDBCStorage.load()LoadExperiments from aFile.abstract Collection<Experiment>Storage.load()BringExperiments from current Storage to local variableStorage.load(BufferedReader reader) LoadExperiments from anReader.Storage.load(InputStream inputStream) LoadExperiments from anInputStream.Methods in org.apache.wayang.commons.util.profiledb.storage with parameters of type ExperimentModifier and TypeMethodDescriptionvoidFileStorage.append(Experiment... experiments) AppendExperiments to aFile.voidJDBCStorage.append(Experiment... experiments) AppendExperiments to aFile.abstract voidStorage.append(Experiment... experiments) Related to file based storage, Receive an array ofExperiments and persist them at the end of a filevoidFileStorage.save(Experiment... experiments) WriteExperiments to aFile.voidJDBCStorage.save(Experiment... experiments) WriteExperiments to aFile.abstract voidStorage.save(Experiment... experiments) Receive an array ofExperiments and persist themMethod parameters in org.apache.wayang.commons.util.profiledb.storage with type arguments of type ExperimentModifier and TypeMethodDescriptionvoidFileStorage.append(Collection<Experiment> experiments) AppendExperiments to aFile.voidJDBCStorage.append(Collection<Experiment> experiments) AppendExperiments to aFile.abstract voidStorage.append(Collection<Experiment> experiments) Related to file based storage, Receive a Collection ofExperiments and persist them at the end of a filevoidFileStorage.save(Collection<Experiment> experiments) WriteExperiments to aFile.voidJDBCStorage.save(Collection<Experiment> experiments) WriteExperiments to aFile.abstract voidStorage.save(Collection<Experiment> experiments) Receive a Collection ofExperiments and persist themvoidStorage.save(Collection<Experiment> experiments, OutputStream outputStream) WriteExperiments to anOutputStream.voidStorage.save(Collection<Experiment> experiments, Writer writer) WriteExperiments 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 theExperimentbeing 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 newJobthat should execute the givenWayangPlaneventually.voidWayangContext.execute(String jobName, WayangPlan wayangPlan, Experiment experiment, String... udfJars) Execute a plan.