public class CoTrainingGenerator extends PrototypeGenerator
| Modifier and Type | Field and Description |
|---|---|
protected int |
numberOfClass
Number of classes.
|
protected int |
numberOfPrototypes
Number of prototypes.
|
algorithmName, generatedDataSet, Instancetest, Instancetrain, SEED, seedDefaultValueList, testDataSet, trainingDataSet, transductiveDataSet| Constructor and Description |
|---|
CoTrainingGenerator(PrototypeSet _trainingDataSet,
int neigbors,
int poblacion,
int perc,
int iteraciones,
double c1,
double c2,
double vmax,
double wstart,
double wend)
Build a new CoTrainingGenerator Algorithm
|
CoTrainingGenerator(PrototypeSet t,
PrototypeSet unlabeled,
PrototypeSet test,
Parameters parameters)
Build a new CoTrainingGenerator Algorithm
|
| Modifier and Type | Method and Description |
|---|---|
Pair<PrototypeSet,PrototypeSet> |
applyAlgorithm()
Apply the CoTraining method.
|
void |
cambiarContextoAttributes()
Changes the context of the attributes.
|
void |
getSolicitaGarbageColector()
Asks for the garbage collector.
|
static void |
main(java.lang.String[] args)
General main for all the prototoype generators
Arguments:
0: Filename with the training data set to be condensed.
1: Filename which contains the test data set.
3: Seed of the random number generator.
|
absoluteAccuracy, absoluteAccuracyAndError, absoluteAccuracyKNN, accuracy, accuracy2, desordenar_vector_sin, desordenar_vector, execute, generateReducedDataSet, getResultingAccuracy, getResultsOfAccuracy, getSeed, getSetSizeFromPercentage, getSetSizeFromPercentage, getTime, inic_vector_sin, inic_vector, saveResultsOfAccuracyIn, selecRandomSet, setInstanceTest, setInstanceTrain, setSeedprotected int numberOfPrototypes
protected int numberOfClass
public CoTrainingGenerator(PrototypeSet _trainingDataSet, int neigbors, int poblacion, int perc, int iteraciones, double c1, double c2, double vmax, double wstart, double wend)
_trainingDataSet - Original prototype set to be reduced.neigbors - number of neighbours considered. (not used)poblacion - population size. (not used)perc - Reduction percentage of the prototype set.iteraciones - number of iterations. (not used)wend - ending w value. (not used)c1 - class 1 value. (not used)vmax - maximum v value. (not used)c2 - class 2 value. (not used)wstart - starting w value. (not used)public CoTrainingGenerator(PrototypeSet t, PrototypeSet unlabeled, PrototypeSet test, Parameters parameters)
t - Original prototype set to be reduced.unlabeled - Original unlabeled prototype set for SSL.test - Origital test prototype set.parameters - Parameters of the algorithm (only % of reduced set).public void cambiarContextoAttributes()
throws java.lang.Exception
java.lang.Exception - if the context can not be changed.public void getSolicitaGarbageColector()
public Pair<PrototypeSet,PrototypeSet> applyAlgorithm() throws java.lang.Exception
applyAlgorithm in class PrototypeGeneratorjava.lang.Exception - if the algorithm can not be applied.public static void main(java.lang.String[] args)
args - Arguments of the main function.