repo stringlengths 1 191 ⌀ | file stringlengths 23 351 | code stringlengths 0 5.32M | file_length int64 0 5.32M | avg_line_length float64 0 2.9k | max_line_length int64 0 288k | extension_type stringclasses 1
value |
|---|---|---|---|---|---|---|
multeval | multeval-master/src/multeval/metrics/SuffStats.java | package multeval.metrics;
public abstract class SuffStats<T> {
public abstract void add(T other);
public abstract SuffStats<T> create();
// hack around generics by erasure
@SuppressWarnings("unchecked")
public void add(SuffStats<?> other) {
add((T) other);
}
}
| 280 | 19.071429 | 40 | java |
multeval | multeval-master/src/multeval/metrics/TER.java | package multeval.metrics;
import jannopts.*;
import java.util.*;
import multeval.util.*;
import ter.*;
import com.google.common.base.*;
public class TER extends Metric<IntStats> {
@Option(shortName = "P", longName = "ter.punctuation", usage = "Use punctuation in TER?", defaultValue = "false")
boolean punctuat... | 4,067 | 28.693431 | 124 | java |
multeval | multeval-master/src/multeval/output/AsciiTable.java | package multeval.output;
import java.io.PrintStream;
import multeval.ResultsManager;
import multeval.ResultsManager.Type;
public class AsciiTable {
public void write(ResultsManager results, PrintStream out) {
String[] columns = new String[results.metricNames.length+1];
columns[0] = String.format("n=%d", resu... | 2,443 | 35.477612 | 142 | java |
multeval | multeval-master/src/multeval/output/LatexTable.java | package multeval.output;
import java.io.*;
import java.util.*;
import multeval.*;
import multeval.metrics.*;
import multeval.ResultsManager.Type;
public class LatexTable {
public void write(ResultsManager results, List<Metric<?>> metricList, PrintWriter out, boolean fullDoc) {
if(fullDoc) {
out.println(... | 3,200 | 41.118421 | 483 | java |
multeval | multeval-master/src/multeval/parallel/MetricWorkerPool.java | package multeval.parallel;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ArrayBlockingQueue;
import com.google.common.base.Supplier;
import com.google.common.collect.ImmutableList;
public abstract class MetricWorkerPool<Task, ThreadLocals> {
private final int threads;
private fina... | 2,322 | 24.25 | 91 | java |
multeval | multeval-master/src/multeval/parallel/SynchronizedBufferedReader.java | package multeval.parallel;
import java.io.BufferedReader;
import java.io.IOException;
public class SynchronizedBufferedReader {
private BufferedReader in;
public SynchronizedBufferedReader(BufferedReader in) {
this.in = in;
}
public synchronized String readLine() throws IOException {
return in.readLine();
... | 399 | 18.047619 | 59 | java |
multeval | multeval-master/src/multeval/parallel/SynchronizedPrintStream.java | package multeval.parallel;
import java.io.PrintStream;
/**
* So here's the use case: You have a compute-heavy task over lines from an
* ordered file and you'd like to write back the processed lines in order. Let's
* call each line a "unit" and give it a unit number. This class allows multiple
* threads to write t... | 1,268 | 25.4375 | 83 | java |
multeval | multeval-master/src/multeval/significance/BootstrapResampler.java | package multeval.significance;
import java.util.*;
import multeval.metrics.*;
import multeval.parallel.MetricWorkerPool;
import com.google.common.base.*;
public class BootstrapResampler {
private final Random random = new Random();
private final int threads;
private final List<Metric<?>> masterMetrics;
... | 3,951 | 33.973451 | 119 | java |
multeval | multeval-master/src/multeval/significance/StratifiedApproximateRandomizationTest.java | package multeval.significance;
import java.util.List;
import java.util.Random;
import multeval.metrics.Metric;
import multeval.metrics.SuffStats;
import multeval.parallel.MetricWorkerPool;
import multeval.util.SuffStatUtils;
import com.google.common.base.Preconditions;
import com.google.common.base.Supplier;
public... | 7,834 | 36.668269 | 137 | java |
multeval | multeval-master/src/multeval/util/ArrayUtils.java | package multeval.util;
import com.google.common.base.*;
public class ArrayUtils {
/** Add parallel arrays.
*
* @param summedStats
* @param ds */
public static void plusEquals(float[] dest, float[] arg) {
Preconditions.checkArgument(dest.length == arg.length, "Arrays not parallel");
for(int i = ... | 1,308 | 22.8 | 82 | java |
multeval | multeval-master/src/multeval/util/CollectionUtils.java | package multeval.util;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import com.google.common.collect.Multiset;
import com.google.common.collect.Multiset.Entry;
public class CollectionUtils {
// rom
// http://philippeadjiman.com/blog/2010/02/20/a-gen... | 985 | 26.388889 | 120 | java |
multeval | multeval-master/src/multeval/util/FileUtils.java | package multeval.util;
import java.io.*;
import com.google.common.base.*;
public class FileUtils {
// File must be ASCII or UTF-8!
public static String getLastLine(String file) throws IOException {
RandomAccessFile ra = new RandomAccessFile(new File(file), "r");
long pos = ra.length() - 2; // skip newli... | 730 | 24.206897 | 68 | java |
multeval | multeval-master/src/multeval/util/LibUtil.java | package multeval.util;
import java.net.*;
public class LibUtil {
// returns null if not found
public static void checkLibrary(String qualifiedName, String libName) {
try {
Class<?> clazz = Class.forName(qualifiedName);
URL where = clazz.getProtectionDomain().getCodeSource().getLocation();
S... | 522 | 26.526316 | 81 | java |
multeval | multeval-master/src/multeval/util/MathUtils.java | package multeval.util;
import java.util.*;
public class MathUtils {
public static final double SQRT_2 = Math.sqrt(2.0);
public static double factorial(int val) {
double result = 1.0;
for(int i = 2; i <= val; i++) {
result *= i;
}
return result;
}
public static double gamma(int alpha) {... | 3,561 | 25.191176 | 116 | java |
multeval | multeval-master/src/multeval/util/StringUtils.java | package multeval.util;
import java.util.regex.*;
public class StringUtils {
public static final Pattern WHITESPACE = Pattern.compile("\\s+");
public static String normalizeWhitespace(String sent) {
return WHITESPACE.matcher(sent.trim()).replaceAll(" ");
}
}
| 273 | 18.571429 | 67 | java |
multeval | multeval-master/src/multeval/util/SuffStatUtils.java | package multeval.util;
import java.util.*;
import multeval.metrics.*;
import com.google.common.base.*;
public class SuffStatUtils {
public static SuffStats<?> sumStats(List<SuffStats<?>> suffStats) {
Preconditions.checkArgument(suffStats.size() > 0, "Need more than zero data points.");
SuffStats<?> summe... | 473 | 21.571429 | 90 | java |
multeval | multeval-master/src/multeval/util/Triple.java | package multeval.util;
public class Triple<S1, S2, S3> {
public S1 first;
public S2 second;
public S3 third;
public Triple(S1 first, S2 second, S3 third) {
this.first = first;
this.second = second;
this.third = third;
}
@Override
public int hashCode() {
return first.hashCode() ^ second.hashCode() ^ ... | 589 | 19.344828 | 84 | java |
multeval | multeval-master/src/multeval/util/Tuple4.java | package multeval.util;
public class Tuple4<S1, S2, S3, S4> {
public S1 first;
public S2 second;
public S3 third;
public S4 fourth;
public Tuple4(S1 first, S2 second, S3 third, S4 fourth) {
this.first = first;
this.second = second;
this.third = third;
this.fourth = fourth;
}
@Override
public int has... | 700 | 21.612903 | 111 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/EstimatorResultsAnalysis.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 88,736 | 47.783397 | 348 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/MultipleEstimatorEvaluation.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 33,257 | 49.162896 | 214 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/MultipleEstimatorsPairwiseTest.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 21,282 | 35.25724 | 166 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/PerformanceMetric.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 14,160 | 58.251046 | 256 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/ROCDiagramMaker.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3... | 7,024 | 41.835366 | 174 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/evaluators/CrossValidationEvaluator.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your opti... | 26,356 | 44.286942 | 193 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/evaluators/Evaluator.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 5,700 | 40.919118 | 129 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/evaluators/InternalEstimateEvaluator.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 2,827 | 39.985507 | 160 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/evaluators/MultiSamplingEvaluator.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3... | 8,800 | 37.600877 | 144 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/evaluators/OutOfBagEvaluator.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 4,334 | 38.054054 | 117 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/evaluators/SamplingEvaluator.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3... | 2,038 | 42.382979 | 99 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/evaluators/SingleSampleEvaluator.java | /*
* Copright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 ... | 2,505 | 35.318841 | 114 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/evaluators/SingleTestSetEvaluator.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 4,310 | 36.815789 | 130 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/evaluators/StratifiedResamplesEvaluator.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 12,370 | 46.217557 | 173 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/storage/ClassifierResults.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 85,312 | 39.490271 | 252 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/storage/ClustererResults.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your opti... | 45,743 | 33.839299 | 138 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/storage/EstimatorResults.java | package evaluation.storage;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.TimeUnit;
import java.util.function.Function;
public abstract class EstimatorResults {
//LINE 1: meta info, set by user
protected String estimatorName = "";
protected... | 11,463 | 45.225806 | 230 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/storage/EstimatorResultsCollection.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 50,481 | 43.952805 | 157 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/storage/RegressorResults.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 37,284 | 33.395756 | 191 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/tuning/ParameterResults.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,894 | 34.092593 | 97 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/tuning/ParameterSet.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 6,057 | 30.717277 | 94 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/tuning/ParameterSpace.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 5,026 | 36.514925 | 101 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/tuning/Tuner.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 19,574 | 37.533465 | 182 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/tuning/searchers/BayesianSearcher.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it w... | 7,113 | 35.295918 | 96 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/tuning/searchers/GridSearcher.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 3,276 | 33.861702 | 121 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/tuning/searchers/ParameterSearcher.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 2,033 | 30.292308 | 95 | java |
tsml-java | tsml-java-master/src/main/java/evaluation/tuning/searchers/RandomSearcher.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 4,170 | 31.585938 | 155 | java |
tsml-java | tsml-java-master/src/main/java/examples/BasicEvaluation.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3... | 4,571 | 42.132075 | 145 | java |
tsml-java | tsml-java-master/src/main/java/examples/Classifiers.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3... | 3,458 | 35.797872 | 91 | java |
tsml-java | tsml-java-master/src/main/java/examples/Clusterers.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 o... | 3,935 | 41.322581 | 118 | java |
tsml-java | tsml-java-master/src/main/java/examples/DataHandling.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3... | 9,064 | 35.26 | 116 | java |
tsml-java | tsml-java-master/src/main/java/examples/HiveCote1Examples.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 11,896 | 48.570833 | 148 | java |
tsml-java | tsml-java-master/src/main/java/examples/HiveCote2Examples.java | package examples;
import experiments.ClassifierExperiments;
import experiments.ExperimentalArguments;
import experiments.data.DatasetLoading;
import tsml.classifiers.EnhancedAbstractClassifier;
import tsml.classifiers.dictionary_based.TDE;
import tsml.classifiers.hybrids.HIVE_COTE;
import tsml.classifiers.kernel_based... | 13,047 | 49.378378 | 153 | java |
tsml-java | tsml-java-master/src/main/java/examples/ThoroughEvaluation.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3... | 6,975 | 45.198675 | 149 | java |
tsml-java | tsml-java-master/src/main/java/examples/ThoroughExperiments.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3... | 4,970 | 42.99115 | 145 | java |
tsml-java | tsml-java-master/src/main/java/experiments/BasicBuildTests.java | /*
Class to do basic build tests for all classifiers
*/
package experiments;
import experiments.data.DatasetLoading;
import tsml.transformers.Transformer;
import utilities.ClassifierTools;
import weka.classifiers.Classifier;
import weka.core.Instances;
import java.io.IOException;
/**
* Does basic sanity check buil... | 3,358 | 40.9875 | 125 | java |
tsml-java | tsml-java-master/src/main/java/experiments/BasicReproductionTests.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distribut... | 31,636 | 56.521818 | 263 | java |
tsml-java | tsml-java-master/src/main/java/experiments/BasicTransformReproductionTests.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distribut... | 12,821 | 35.016854 | 153 | java |
tsml-java | tsml-java-master/src/main/java/experiments/ClassifierExperiments.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 49,547 | 48.498501 | 257 | java |
tsml-java | tsml-java-master/src/main/java/experiments/ClassifierLists.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it w... | 57,791 | 46.331695 | 205 | java |
tsml-java | tsml-java-master/src/main/java/experiments/ClustererLists.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it w... | 9,223 | 38.758621 | 169 | java |
tsml-java | tsml-java-master/src/main/java/experiments/ClusteringExperiments.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 19,601 | 45.56057 | 167 | java |
tsml-java | tsml-java-master/src/main/java/experiments/CollateResults.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it w... | 52,847 | 46.397309 | 214 | java |
tsml-java | tsml-java-master/src/main/java/experiments/ExperimentalArguments.java | package experiments;
import com.beust.jcommander.JCommander;
import com.beust.jcommander.Parameter;
import com.beust.jcommander.Parameters;
import tsml.classifiers.distance_based.utils.strings.StrUtils;
import weka.classifiers.Classifier;
import weka.clusterers.Clusterer;
import java.lang.reflect.Field;
import java.u... | 24,805 | 57.230047 | 279 | java |
tsml-java | tsml-java-master/src/main/java/experiments/MemoryMonitor.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 11,256 | 54.453202 | 264 | java |
tsml-java | tsml-java-master/src/main/java/experiments/ShapeDTWExperiments.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,866 | 42.418605 | 140 | java |
tsml-java | tsml-java-master/src/main/java/experiments/SimulationExperiments.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 63,350 | 41.574597 | 205 | java |
tsml-java | tsml-java-master/src/main/java/experiments/SingleProblemExperiments.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,874 | 37.265306 | 141 | java |
tsml-java | tsml-java-master/src/main/java/experiments/TonyCollateResults.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 90,682 | 43.517919 | 214 | java |
tsml-java | tsml-java-master/src/main/java/experiments/TransformExperiments.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 10,430 | 45.775785 | 204 | java |
tsml-java | tsml-java-master/src/main/java/experiments/TransformLists.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 4,978 | 32.870748 | 103 | java |
tsml-java | tsml-java-master/src/main/java/experiments/data/DataProcessing.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 81,835 | 46.304046 | 216 | java |
tsml-java | tsml-java-master/src/main/java/experiments/data/DatasetLists.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 82,910 | 36.618421 | 1,009 | java |
tsml-java | tsml-java-master/src/main/java/experiments/data/DatasetLoading.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 o... | 39,856 | 39.546287 | 157 | java |
tsml-java | tsml-java-master/src/main/java/experiments/data/MultivariateProcessing.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 39,229 | 48.098874 | 204 | java |
tsml-java | tsml-java-master/src/main/java/experiments/data/TSReader.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 17,725 | 35.101833 | 204 | java |
tsml-java | tsml-java-master/src/main/java/fileIO/FullAccessOutFile.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,517 | 32 | 78 | java |
tsml-java | tsml-java-master/src/main/java/fileIO/InFile.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 15,291 | 33.913242 | 176 | java |
tsml-java | tsml-java-master/src/main/java/fileIO/OutFile.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 3,480 | 24.977612 | 76 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ChooseClassifierFromFile.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it w... | 9,125 | 38.336207 | 203 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ChooseDatasetFromFile.java | /*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it w... | 7,815 | 38.675127 | 191 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ContinuousIntervalTree.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your opti... | 23,856 | 39.851027 | 119 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/LibLinearClassifier.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your opti... | 7,429 | 29.958333 | 106 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/MultiLinearRegression.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 6,543 | 41.493506 | 154 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/MultiResponseModelTrees.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 5,580 | 39.442029 | 130 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/PLSNominalClassifier.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 4,581 | 33.712121 | 98 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/RidgeClassifierCV.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your opti... | 10,205 | 34.314879 | 120 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/SaveEachParameter.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,015 | 34.034483 | 76 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/kNN.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your opti... | 8,338 | 35.256522 | 163 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/AbstractEnsemble.java | /*
* Copyright (C) 2019 xmw13bzu
*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3... | 54,016 | 41.266823 | 219 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/CAWPE.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 31,190 | 42.746143 | 202 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/ContractRotationForest.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 60,237 | 38.998672 | 188 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/EnhancedRotationForest.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your opti... | 37,908 | 38.001029 | 203 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/EnsembleSelection.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 20,799 | 43.635193 | 191 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/HomogeneousContractCAWPE.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 3,173 | 36.341176 | 114 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/SaveableEnsemble.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,099 | 35.666667 | 80 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/SingleTransformEnsembles.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,793 | 25.776119 | 76 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/TransformEnsembles.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 9,092 | 27.23913 | 132 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/stackers/SMLR.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,541 | 38.538462 | 80 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/stackers/SMLRE.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,586 | 38.675 | 94 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/stackers/SMM5.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 1,592 | 37.853659 | 78 | java |
tsml-java | tsml-java-master/src/main/java/machine_learning/classifiers/ensembles/voting/AverageVoteByConfidence.java | /*
* This file is part of the UEA Time Series Machine Learning (TSML) toolbox.
*
* The UEA TSML toolbox is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your o... | 4,050 | 35.495495 | 111 | java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.