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/classifiers/rules/Item.java | package weka.classifiers.rules;
public class Item implements Comparable {
//attrubutes
private int Value;
//constructor
public Item(int Value) {
this.Value = Value;
}
//methods
public void setValue(int value) { // sets value of the Item
this.Value = value;
}
pu... | 706 | 21.09375 | 72 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/JRip.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... | 65,236 | 30.530691 | 687 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/L3implementation.java | package weka.classifiers.rules;
import java.lang.*;
import java.io.*;
import java.util.*;
import weka.core.Instances;
public class L3implementation implements Serializable {
int CLASS_NUM = 200;
String[] class_labels;
public int num_features;
public int num_samples;
public int num_classes;
p... | 47,375 | 44.335885 | 162 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/Lazy_Pruning.java | package weka.classifiers.rules;
import java.io.*;
import java.util.*;
import java.util.ArrayList;
import java.io.IOException;
public class Lazy_Pruning implements Serializable {
public static void lazy_main(String[] args) {
//inputs
String Rules_File = new String();
String Transactions_... | 9,217 | 39.253275 | 164 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/M5Rules.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,407 | 31 | 174 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/NNge.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... | 50,040 | 27.942163 | 170 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/OneR.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,295 | 29.53211 | 178 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/PART.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,659 | 26.077326 | 170 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/Prism.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... | 15,386 | 26.476786 | 168 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/Ridor.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... | 53,250 | 31.175831 | 383 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/Rule.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,544 | 27.595506 | 82 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/RuleL3.java | package weka.classifiers.rules;
import java.io.*;
import java.util.*;
import java.util.ArrayList;
import java.io.IOException;
public class RuleL3 {
// attributes
private int Rule_ID;
private int Class_ID;
private int Length;
private int Absolute_Support;
private float Confidence;
private ... | 3,030 | 21.124088 | 77 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/RuleStats.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,800 | 31.427639 | 94 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/Transaction.java | package weka.classifiers.rules;
import java.util.*;
public class Transaction {
// attributes
private int tid;
private int cid;
private int Class_ID;
private int Num_Items;
private Item Items[];
private int Last_Rule;
// constructor
public Transaction() {
}
public Transact... | 1,070 | 16.557377 | 85 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ZeroR.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,609 | 28.382239 | 124 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/part/C45PruneableDecList.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,422 | 25.846535 | 75 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/part/ClassifierDecList.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,843 | 23.589569 | 75 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/part/MakeDecList.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,235 | 25.74026 | 85 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/part/PruneableDecList.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,633 | 25.083333 | 77 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CChildPtr.java | package weka.classifiers.rules.ruleshandler;
public class CChildPtr {
CFpNode child;
CChildPtr next;
public CChildPtr(int k) {
child = new CFpNode(k);
next = null;
}
}
| 204 | 13.642857 | 44 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CClasse.java | package weka.classifiers.rules.ruleshandler;
import java.io.*;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.text.FieldPosition;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.Locale;
public class CC... | 42,013 | 33.522597 | 241 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CFpNode.java | package weka.classifiers.rules.ruleshandler;
public class CFpNode {
int itemId;
CFpNode parent;
CChildPtr children;
int local_supp;
int[] local_suppClass;
CFpNode next;
public CFpNode(int k) {
itemId = 0;
local_supp = 0;
local_suppClass = new int[k];
child... | 340 | 16.05 | 44 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CFptree.java | package weka.classifiers.rules.ruleshandler;
public class CFptree {
CFpNode root;
int branches;
public CFptree(int k) {
root = new CFpNode(k);
}
public void setBranches(int j) {
branches = j;
}
}
| 241 | 13.235294 | 44 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CFrequentDistinct.java | package weka.classifiers.rules.ruleshandler;
public class CFrequentDistinct {
int freqdistinct;
public CFrequentDistinct(int val) {
freqdistinct = val;
}
public void modifica(int mod) {
freqdistinct = mod;
}
public void add(int agg) {
freqdistinct = freqdistinct + ... | 334 | 14.227273 | 44 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CFrequentItem.java | package weka.classifiers.rules.ruleshandler;
import java.util.*;
public class CFrequentItem {
int itemId;
int supp;
int[] suppClass;
CFpNode head;
int nodeLinkCounter;
int accorpato;
LinkedList<Integer> itemAccorpati;
public CFrequentItem(int k) {
itemId = 0;
supp =... | 579 | 17.125 | 50 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CHeaderTable.java | package weka.classifiers.rules.ruleshandler;
public class CHeaderTable {
int frequentCount;
CFrequentItem[] frequentArray;
public CHeaderTable(int k) {
frequentArray = new CFrequentItem[k];
frequentCount = 0;
for ( int t = 0 ; t<k ; t++) {
frequentArray[t] = new CFrequ... | 1,682 | 20.0375 | 76 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CItem.java | package weka.classifiers.rules.ruleshandler;
public class CItem {
int supp;
int[] suppClass;
public CItem(int k) {
supp = 0;
suppClass = new int[k];
for ( int i = 0 ; i<k ; i++ ) {
suppClass[i] = 0;
}
}
}
| 270 | 14.055556 | 44 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CItemCorpo.java | package weka.classifiers.rules.ruleshandler;
public class CItemCorpo {
int[] item_corpo;
public CItemCorpo(int k) {
item_corpo = new int[k];
for ( int i = 0 ; i < k ; i++ ) {
item_corpo[i] = 0;
}
}
public void ordina ( int left, int right) {
int i = le... | 1,001 | 17.90566 | 61 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CItemEntry.java | package weka.classifiers.rules.ruleshandler;
public class CItemEntry {
int itemId;
int supp;
int[] suppClass;
CItemEntry next;
public CItemEntry(int k) {
itemId = 0;
supp = 0;
suppClass = new int[k];
next = null;
}
}
| 276 | 15.294118 | 44 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CItemEq.java | package weka.classifiers.rules.ruleshandler;
public class CItemEq {
int pos;
int flag;
public CItemEq () {
}
} | 130 | 10.909091 | 44 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CMacroItem.java | package weka.classifiers.rules.ruleshandler;
public class CMacroItem {
int numItem;
int[] vettItemId;
static int MACROITEM_MAX_ITEM = 3000 ;
public CMacroItem() {
numItem = 0;
vettItemId = new int[MACROITEM_MAX_ITEM];
}
}
| 263 | 15.5 | 49 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/ruleshandler/CMain.java | package weka.classifiers.rules.ruleshandler;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.EOFException;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import ja... | 8,120 | 24.780952 | 138 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/BalancedMergeSort.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.io.File ;
import java.io.FileNotFoundException ;
im... | 14,115 | 33.014458 | 70 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/Comparator.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
/**
* An interface defining the necessary properties to be de... | 757 | 22.6875 | 67 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/ComparatorParameterErrorException.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
/**
* A class to represent the exception of attempting to com... | 839 | 19.487805 | 69 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/FileSort.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.io.FileNotFoundException ;
import java.io.IOExceptio... | 1,284 | 28.204545 | 70 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/MyRecord.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.util.StringTokenizer;
import weka.classifiers.rules... | 2,031 | 24.4 | 74 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/MyRecordComparator.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import weka.classifiers.rules.sortinghandler.Comparator ;
import... | 1,779 | 21.820513 | 80 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/MyRecordInformation.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import weka.classifiers.rules.sortinghandler.Comparator ;
import... | 1,036 | 22.044444 | 66 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/MyRecordReader.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import weka.classifiers.rules.sortinghandler.Record ;
import wek... | 1,028 | 21.369565 | 62 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/MyRecordWriter.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import weka.classifiers.rules.sortinghandler.Record ;
import weka.clas... | 998 | 20.717391 | 61 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/PolyphaseMergeSort.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.io.File ;
import java.io.FileNotFoundException ;
imp... | 15,513 | 31.253638 | 70 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/QuicksortVector.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.util.Vector ;
/**
* Sort an array of <code>Obje... | 4,855 | 28.975309 | 77 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/Record.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
/**
* An interface defining the concept of a record, the sort... | 716 | 19.485714 | 69 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/RecordCopyFile.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.io.File ;
import java.io.FileNotFoundException ;
im... | 2,600 | 26.09375 | 70 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/RecordInformation.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.io.File ;
import java.io.IOException ;
/**
* An ... | 1,613 | 27.315789 | 70 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/RecordReader.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.io.File ;
import java.io.IOException ;
/**
* An ... | 1,251 | 20.586207 | 69 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/RecordWriter.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.io.File ;
import java.io.IOException ;
/**
* An ... | 967 | 21 | 69 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/VectorSort.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
*
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
*
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import java.util.Vector ;
/**
* The interface implemented by... | 775 | 20.555556 | 70 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/rules/sortinghandler/testFileSort.java | package weka.classifiers.rules.sortinghandler;
/**
* This code is from the book:
* <p>
* Winder, R and Roberts, G (1998) <em>Developing Java
* Software</em>, John Wiley & Sons.
* <p>
* It is copyright (c) 1997 Russel Winder and Graham Roberts.
*/
import weka.classifiers.rules.sortinghandler.BalancedMergeSort;
... | 805 | 31.24 | 146 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ADTree.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... | 51,304 | 33.180546 | 298 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/BFTree.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... | 85,246 | 31.837827 | 201 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/DecisionStump.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... | 28,316 | 35.118622 | 228 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/FT.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... | 24,245 | 29.23192 | 283 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/HoeffdingTree.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... | 30,233 | 28.612145 | 133 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/Id3.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... | 16,064 | 30.624016 | 228 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/J48.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,945 | 25.21576 | 139 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/J48graft.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... | 21,583 | 25.35409 | 166 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/LADTree.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... | 49,395 | 31.821262 | 143 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/LMT.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... | 25,044 | 30.18929 | 256 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/M5P.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,920 | 25.517241 | 161 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/NBTree.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... | 8,519 | 28.078498 | 180 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/REPTree.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... | 61,966 | 27.635397 | 308 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/RandomForest.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... | 19,186 | 26.527977 | 99 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/RandomTree.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... | 49,961 | 31.358808 | 111 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/SimpleCart.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... | 60,080 | 28.698962 | 168 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/adtree/PredictionNode.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... | 5,258 | 27.274194 | 84 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/adtree/ReferenceInstances.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... | 2,280 | 29.013158 | 77 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/adtree/Splitter.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,826 | 30.113821 | 96 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/adtree/TwoWayNominalSplit.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... | 6,612 | 29.75814 | 88 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/adtree/TwoWayNumericSplit.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... | 6,403 | 29.350711 | 88 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ft/FTInnerNode.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... | 10,065 | 33.006757 | 125 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ft/FTLeavesNode.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... | 8,935 | 31.852941 | 119 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ft/FTNode.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... | 10,376 | 32.801303 | 125 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ft/FTtree.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... | 21,660 | 29.724823 | 119 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/ActiveHNode.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,433 | 30.218182 | 116 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/ConditionalSufficientStats.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,479 | 31.631579 | 78 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/GaussianConditionalSufficientStats.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,547 | 29.682927 | 89 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/GiniSplitMetric.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,730 | 28.053191 | 83 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/HNode.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,392 | 24.169291 | 95 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/InactiveHNode.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,615 | 26.862069 | 76 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/InfoGainSplitMetric.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,055 | 26.531532 | 78 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/LeafNode.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,113 | 25.759494 | 79 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/LearningNode.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,104 | 32.484848 | 80 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/NBNode.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,289 | 27.608696 | 80 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/NBNodeAdaptive.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,398 | 26.41129 | 80 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/NominalConditionalSufficientStats.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,178 | 27.772222 | 103 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/Split.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,855 | 29.42623 | 76 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/SplitCandidate.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,176 | 28.026667 | 80 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/SplitMetric.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,198 | 27.934211 | 74 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/SplitNode.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,652 | 24.695455 | 79 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/UnivariateNominalMultiwaySplit.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,883 | 27.119403 | 74 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/UnivariateNumericBinarySplit.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,271 | 24.818182 | 81 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/ht/WeightMass.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,154 | 27.170732 | 74 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/j48/BinC45ModelSelection.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,993 | 28.97 | 83 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/j48/BinC45Split.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,980 | 26.575937 | 84 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/j48/C45ModelSelection.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,167 | 28.371429 | 83 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/j48/C45PruneableClassifierTree.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,825 | 24.857895 | 76 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/j48/C45PruneableClassifierTreeG.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... | 40,404 | 31.903094 | 82 | java |
tsml-java | tsml-java-master/src/main/java/weka/classifiers/trees/j48/C45Split.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,261 | 26.639535 | 84 | java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.