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
tsml-java
tsml-java-master/src/main/java/weka/core/EditDistance.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 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that...
3,247
30.533981
117
java
tsml-java
tsml-java-master/src/main/java/weka/core/Environment.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...
6,317
28.25
98
java
tsml-java
tsml-java-master/src/main/java/weka/core/EnvironmentHandler.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...
1,410
30.355556
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/EuclideanDistance.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,139
32.115942
145
java
tsml-java
tsml-java-master/src/main/java/weka/core/FastVector.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...
5,121
22.603687
86
java
tsml-java
tsml-java-master/src/main/java/weka/core/GlobalInfoJavadoc.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...
3,661
26.533835
81
java
tsml-java
tsml-java-master/src/main/java/weka/core/GowerDistance.java
package weka.core; import weka.core.neighboursearch.PerformanceStats; public class GowerDistance extends EuclideanDistance { private static final long serialVersionUID = 1L; double[] ranges; private GowerDistance(){ super(); } public GowerDistance(Instances data) { super(data); ranges=findRanges...
3,077
26.981818
120
java
tsml-java
tsml-java-master/src/main/java/weka/core/Instance.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...
21,961
35.121711
85
java
tsml-java
tsml-java-master/src/main/java/weka/core/InstanceComparator.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...
8,306
28.457447
109
java
tsml-java
tsml-java-master/src/main/java/weka/core/Instances.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...
71,788
31.337387
112
java
tsml-java
tsml-java-master/src/main/java/weka/core/Javadoc.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...
14,945
24.813472
86
java
tsml-java
tsml-java-master/src/main/java/weka/core/Jython.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 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that...
9,164
28.85342
134
java
tsml-java
tsml-java-master/src/main/java/weka/core/JythonObject.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 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that...
1,034
29.441176
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/JythonSerializableObject.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 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that...
1,136
30.583333
78
java
tsml-java
tsml-java-master/src/main/java/weka/core/ListOptions.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...
4,710
24.327957
78
java
tsml-java
tsml-java-master/src/main/java/weka/core/ManhattanDistance.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...
4,547
28.532468
159
java
tsml-java
tsml-java-master/src/main/java/weka/core/Matchable.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...
1,252
24.06
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/Matrix.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...
15,443
27.029038
80
java
tsml-java
tsml-java-master/src/main/java/weka/core/Memory.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,335
27.463415
90
java
tsml-java
tsml-java-master/src/main/java/weka/core/MinkowskiDistance.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...
8,665
30.285199
145
java
tsml-java
tsml-java-master/src/main/java/weka/core/MultiInstanceCapabilitiesHandler.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...
1,478
33.395349
79
java
tsml-java
tsml-java-master/src/main/java/weka/core/NoSupportForMissingValuesException.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...
1,555
26.785714
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/NormalizableDistance.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...
23,993
28.404412
103
java
tsml-java
tsml-java-master/src/main/java/weka/core/Optimization.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...
45,057
31.092593
115
java
tsml-java
tsml-java-master/src/main/java/weka/core/Option.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...
2,560
21.269565
87
java
tsml-java
tsml-java-master/src/main/java/weka/core/OptionHandler.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...
1,926
26.140845
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/OptionHandlerJavadoc.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...
6,060
26.301802
86
java
tsml-java
tsml-java-master/src/main/java/weka/core/PairedStats.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,334
27.202417
89
java
tsml-java
tsml-java-master/src/main/java/weka/core/PartitionGenerator.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...
1,491
30.744681
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/ProtectedProperties.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...
4,091
26.648649
79
java
tsml-java
tsml-java-master/src/main/java/weka/core/Queue.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...
8,852
27.194268
78
java
tsml-java
tsml-java-master/src/main/java/weka/core/RandomVariates.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...
8,838
27.885621
92
java
tsml-java
tsml-java-master/src/main/java/weka/core/Randomizable.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...
1,295
26.574468
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/Range.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...
12,760
26.267094
92
java
tsml-java
tsml-java-master/src/main/java/weka/core/RelationalLocator.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,463
39.786885
123
java
tsml-java
tsml-java-master/src/main/java/weka/core/RepositoryIndexGenerator.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...
21,910
34.569805
100
java
tsml-java
tsml-java-master/src/main/java/weka/core/RevisionHandler.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...
1,146
28.410256
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/RevisionUtils.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...
4,197
26.437908
89
java
tsml-java
tsml-java-master/src/main/java/weka/core/SelectedTag.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...
4,260
27.032895
76
java
tsml-java
tsml-java-master/src/main/java/weka/core/SerializationHelper.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...
10,364
27.165761
129
java
tsml-java
tsml-java-master/src/main/java/weka/core/SerializedObject.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...
5,088
28.935294
90
java
tsml-java
tsml-java-master/src/main/java/weka/core/SingleIndex.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...
6,869
26.701613
81
java
tsml-java
tsml-java-master/src/main/java/weka/core/SparseInstance.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...
27,699
33.155364
80
java
tsml-java
tsml-java-master/src/main/java/weka/core/SpecialFunctions.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...
2,997
26.254545
75
java
tsml-java
tsml-java-master/src/main/java/weka/core/Statistics.java
package weka.core; /** * Class implementing some distributions, tests, etc. The code is mostly adapted from the CERN * Jet Java libraries: * * Copyright 2001 University of Waikato * Copyright 1999 CERN - European Organization for Nuclear Research. * Permission to use, copy, modify, distribute and sell this soft...
27,322
24.535514
98
java
tsml-java
tsml-java-master/src/main/java/weka/core/Stats.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...
5,631
25.317757
78
java
tsml-java
tsml-java-master/src/main/java/weka/core/Stopwords.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...
18,192
20.228705
126
java
tsml-java
tsml-java-master/src/main/java/weka/core/StringLocator.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,655
39.723404
119
java
tsml-java
tsml-java-master/src/main/java/weka/core/Summarizable.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...
1,229
24.625
75
java
tsml-java
tsml-java-master/src/main/java/weka/core/Tag.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...
4,594
21.860697
83
java
tsml-java
tsml-java-master/src/main/java/weka/core/TechnicalInformation.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...
29,261
38.812245
379
java
tsml-java
tsml-java-master/src/main/java/weka/core/TechnicalInformationHandler.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...
1,467
33.952381
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/TechnicalInformationHandlerJavadoc.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...
6,250
26.782222
98
java
tsml-java
tsml-java-master/src/main/java/weka/core/Tee.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...
13,366
23.392336
83
java
tsml-java
tsml-java-master/src/main/java/weka/core/TestInstances.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...
53,022
28.5064
131
java
tsml-java
tsml-java-master/src/main/java/weka/core/ThreadSafe.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...
996
29.212121
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/Trie.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...
20,982
22.656144
96
java
tsml-java
tsml-java-master/src/main/java/weka/core/UnassignedClassException.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...
1,550
26.696429
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/UnassignedDatasetException.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...
1,539
26.5
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/Undoable.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...
1,606
24.109375
80
java
tsml-java
tsml-java-master/src/main/java/weka/core/UnsupportedAttributeTypeException.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...
1,576
27.160714
78
java
tsml-java
tsml-java-master/src/main/java/weka/core/UnsupportedClassTypeException.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...
1,551
26.714286
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/Utils.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...
71,084
29.006332
138
java
tsml-java
tsml-java-master/src/main/java/weka/core/Version.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,352
27.515244
80
java
tsml-java
tsml-java-master/src/main/java/weka/core/WeightedInstancesHandler.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...
1,121
25.093023
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/WekaEnumeration.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...
3,149
25.470588
76
java
tsml-java
tsml-java-master/src/main/java/weka/core/WekaException.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...
1,374
24
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/AbstractFileLoader.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,541
26.657971
98
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/AbstractFileSaver.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...
14,599
24.172414
87
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/AbstractLoader.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...
2,598
22.844037
83
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/AbstractSaver.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,743
22.975232
112
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/ArffLoader.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...
36,791
30.772021
143
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/ArffSaver.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...
13,220
25.180198
86
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/BatchConverter.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...
1,039
30.515152
80
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/C45Loader.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...
15,404
28.011299
82
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/C45Saver.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...
16,611
30.823755
172
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/CSVLoader.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...
39,658
28.796394
92
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/CSVSaver.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...
16,771
26.360522
193
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/ConverterUtils.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...
32,691
28.267681
99
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/FileSourcedConverter.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...
2,163
24.458824
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/IncrementalConverter.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...
1,049
31.8125
80
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/LibSVMLoader.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...
10,491
24.906173
96
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/LibSVMSaver.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...
10,175
23.639225
81
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/Loader.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...
6,857
31.971154
80
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/MatlabLoader.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...
8,875
24.144476
96
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/MatlabSaver.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...
11,913
23.924686
100
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/SVMLightLoader.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...
12,378
24.735967
96
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/SVMLightSaver.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...
10,572
23.877647
89
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/Saver.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...
5,592
31.517442
92
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/SerializedInstancesLoader.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...
5,749
27.186275
81
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/SerializedInstancesSaver.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...
4,536
23.928571
83
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/StreamTokenizerUtils.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...
2,950
28.217822
77
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/TextDirectoryLoader.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...
18,685
28.33438
191
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/URLSourcedLoader.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...
1,251
25.638298
74
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/XRFFLoader.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...
8,022
25.654485
135
java
tsml-java
tsml-java-master/src/main/java/weka/core/converters/XRFFSaver.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...
10,487
24.580488
135
java
tsml-java
tsml-java-master/src/main/java/weka/core/logging/ConsoleLogger.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...
1,769
28.5
88
java
tsml-java
tsml-java-master/src/main/java/weka/core/logging/FileLogger.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...
3,975
26.804196
110
java
tsml-java
tsml-java-master/src/main/java/weka/core/logging/Logger.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...
6,350
23.712062
105
java
tsml-java
tsml-java-master/src/main/java/weka/core/logging/OutputLogger.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...
5,194
23.389671
88
java