Download LCSFramework Free Java Code

Description

A generic Java LCS framework.

Source Files

The download file LCSFramework-master.zip has the following entries.


.gitignore/* w  ww . j a  v  a 2  s  .  com*/
README
etc/defaultLcs.properties
src/gr/auth/ee/lcs/AbstractLearningClassifierSystem.java
src/gr/auth/ee/lcs/ArffTrainTestLoader.java
src/gr/auth/ee/lcs/FoldEvaluator.java
src/gr/auth/ee/lcs/calibration/InternalValidation.java
src/gr/auth/ee/lcs/calibration/ProportionalCut.java
src/gr/auth/ee/lcs/classifiers/Classifier.java
src/gr/auth/ee/lcs/classifiers/ClassifierSet.java
src/gr/auth/ee/lcs/classifiers/IPopulationControlStrategy.java
src/gr/auth/ee/lcs/classifiers/Macroclassifier.java
src/gr/auth/ee/lcs/classifiers/populationcontrol/FixedSizeSetWorstFitnessDeletion.java
src/gr/auth/ee/lcs/classifiers/populationcontrol/InadequeteClassifierDeletionStrategy.java
src/gr/auth/ee/lcs/classifiers/populationcontrol/PostProcessPopulationControl.java
src/gr/auth/ee/lcs/classifiers/populationcontrol/SortPopulationControl.java
src/gr/auth/ee/lcs/classifiers/statistics/MeanAttributeSpecificityStatistic.java
src/gr/auth/ee/lcs/classifiers/statistics/MeanCoverageStatistic.java
src/gr/auth/ee/lcs/classifiers/statistics/MeanFitnessStatistic.java
src/gr/auth/ee/lcs/classifiers/statistics/MeanLabelSpecificity.java
src/gr/auth/ee/lcs/classifiers/statistics/WeightedMeanAttributeSpecificityStatistic.java
src/gr/auth/ee/lcs/classifiers/statistics/WeightedMeanCoverageStatistic.java
src/gr/auth/ee/lcs/classifiers/statistics/WeightedMeanLabelSpecificity.java
src/gr/auth/ee/lcs/classifiers/statistics/bundles/SetStatisticsBundle.java
src/gr/auth/ee/lcs/data/AbstractUpdateStrategy.java
src/gr/auth/ee/lcs/data/ClassifierTransformBridge.java
src/gr/auth/ee/lcs/data/IClassificationStrategy.java
src/gr/auth/ee/lcs/data/ILCSMetric.java
src/gr/auth/ee/lcs/data/LCSMetricBundle.java
src/gr/auth/ee/lcs/data/representations/SimpleBooleanRepresentation.java
src/gr/auth/ee/lcs/data/representations/complex/ComplexRepresentation.java
src/gr/auth/ee/lcs/data/representations/complex/GenericMultiLabelRepresentation.java
src/gr/auth/ee/lcs/data/representations/complex/SingleClassRepresentation.java
src/gr/auth/ee/lcs/data/representations/complex/StrictMultiLabelRepresentation.java
src/gr/auth/ee/lcs/data/representations/complex/UniLabelRepresentation.java
src/gr/auth/ee/lcs/data/updateAlgorithms/ASLCSUpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/AbstractSLCSUpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/MlASLCS2UpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/MlASLCS3UpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/MlASLCSUpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/MlSSLCSUpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/MlUCSUpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/RTUCSUpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/SSLCSUpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/SequentialMlUpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/UCSUpdateAlgorithm.java
src/gr/auth/ee/lcs/data/updateAlgorithms/XCSUpdateAlgorithm.java
src/gr/auth/ee/lcs/distributed/AbstractRuleDistributer.java
src/gr/auth/ee/lcs/distributed/IRuleRouter.java
src/gr/auth/ee/lcs/distributed/IRuleSocket.java
src/gr/auth/ee/lcs/distributed/distributers/SimpleRuleDistributer.java
src/gr/auth/ee/lcs/distributed/routers/All2AllRouter.java
src/gr/auth/ee/lcs/distributed/sockets/LocalHubbedRuleSocket.java
src/gr/auth/ee/lcs/evaluators/AccuracyRecallEvaluator.java
src/gr/auth/ee/lcs/evaluators/AllSingleLabelEvaluator.java
src/gr/auth/ee/lcs/evaluators/BAMPercentageEvaluator.java
src/gr/auth/ee/lcs/evaluators/ConfusionMatrixEvaluator.java
src/gr/auth/ee/lcs/evaluators/ExactMatchEvalutor.java
src/gr/auth/ee/lcs/evaluators/FileLogger.java
src/gr/auth/ee/lcs/evaluators/HammingLossEvaluator.java
src/gr/auth/ee/lcs/evaluators/SingleLabelEvaluator.java
src/gr/auth/ee/lcs/evaluators/TestFileClassification.java
src/gr/auth/ee/lcs/evaluators/bamevaluators/BAMEvaluator.java
src/gr/auth/ee/lcs/evaluators/bamevaluators/IdentityBAMEvaluator.java
src/gr/auth/ee/lcs/evaluators/bamevaluators/PositionBAMEvaluator.java
src/gr/auth/ee/lcs/geneticalgorithm/IBinaryGeneticOperator.java
src/gr/auth/ee/lcs/geneticalgorithm/IGeneticAlgorithmStrategy.java
src/gr/auth/ee/lcs/geneticalgorithm/IRuleSelector.java
src/gr/auth/ee/lcs/geneticalgorithm/IUnaryGeneticOperator.java
src/gr/auth/ee/lcs/geneticalgorithm/algorithms/SteadyStateGeneticAlgorithm.java
src/gr/auth/ee/lcs/geneticalgorithm/operators/SinglePointCrossover.java
src/gr/auth/ee/lcs/geneticalgorithm/operators/UniformBitMutation.java
src/gr/auth/ee/lcs/geneticalgorithm/selectors/BestClassifierSelector.java
src/gr/auth/ee/lcs/geneticalgorithm/selectors/RouletteWheelSelector.java
src/gr/auth/ee/lcs/geneticalgorithm/selectors/TournamentSelector.java
src/gr/auth/ee/lcs/geneticalgorithm/selectors/TournamentSelector2.java
src/gr/auth/ee/lcs/implementations/ASLCS.java
src/gr/auth/ee/lcs/implementations/BatchASLCSExperiments.java
src/gr/auth/ee/lcs/implementations/DirectASLCS.java
src/gr/auth/ee/lcs/implementations/DirectGASLCS.java
src/gr/auth/ee/lcs/implementations/DirectGUCS.java
src/gr/auth/ee/lcs/implementations/DirectUCS.java
src/gr/auth/ee/lcs/implementations/GMlASLCS.java
src/gr/auth/ee/lcs/implementations/GMlASLCS2.java
src/gr/auth/ee/lcs/implementations/GMlASLCS3.java
src/gr/auth/ee/lcs/implementations/GMlSSLCS.java
src/gr/auth/ee/lcs/implementations/GMlUCS.java
src/gr/auth/ee/lcs/implementations/MlASLCS.java
src/gr/auth/ee/lcs/implementations/MlSSLCS.java
src/gr/auth/ee/lcs/implementations/MlUCS.java
src/gr/auth/ee/lcs/implementations/RTASLCS.java
src/gr/auth/ee/lcs/implementations/RTUCS.java
src/gr/auth/ee/lcs/implementations/SSLCS.java
src/gr/auth/ee/lcs/implementations/SequentialASLCS.java
src/gr/auth/ee/lcs/implementations/SequentialGASLCS.java
src/gr/auth/ee/lcs/implementations/SequentialGSSLCS.java
src/gr/auth/ee/lcs/implementations/SequentialGUCS.java
src/gr/auth/ee/lcs/implementations/SequentialUCS.java
src/gr/auth/ee/lcs/implementations/TransformASLCS.java
src/gr/auth/ee/lcs/implementations/TransformationUCS.java
src/gr/auth/ee/lcs/implementations/UCS.java
src/gr/auth/ee/lcs/implementations/global/AllMlTypes.java
src/gr/auth/ee/lcs/implementations/meta/BRGMlASLCS2Combination.java
src/gr/auth/ee/lcs/implementations/meta/BRSGUCSCombination.java
src/gr/auth/ee/lcs/implementations/meta/EnsembleBRSeqUCSComb.java
src/gr/auth/ee/lcs/implementations/meta/EnsembleGMlASLCS.java
src/gr/auth/ee/lcs/implementations/meta/EnsembleRTASLCS.java
src/gr/auth/ee/lcs/implementations/meta/GenericEnsemble.java
src/gr/auth/ee/lcs/implementations/parallel/P2Plcs.java
src/gr/auth/ee/lcs/meta/BaggedEnsemble.java
src/gr/auth/ee/lcs/utilities/BinaryRelevanceSelector.java
src/gr/auth/ee/lcs/utilities/ExtendedBitSet.java
src/gr/auth/ee/lcs/utilities/ILabelSelector.java
src/gr/auth/ee/lcs/utilities/InstancesUtility.java
src/gr/auth/ee/lcs/utilities/LabelFrequencyCalculator.java
src/gr/auth/ee/lcs/utilities/LabelRepresentationConverter.java
src/gr/auth/ee/lcs/utilities/PairwiseLabelSelector.java
src/gr/auth/ee/lcs/utilities/SettingsLoader.java
test/gr/auth/ee/lcs/AbstractLearningClassifierSystemTest.java
test/gr/auth/ee/lcs/FoldEvaluatorTest.java
test/gr/auth/ee/lcs/calibration/InternalValidationTest.java
test/gr/auth/ee/lcs/calibration/ProportionalCutTest.java
test/gr/auth/ee/lcs/classifiers/ClassifierSetTest.java
test/gr/auth/ee/lcs/classifiers/ClassifierTest.java
test/gr/auth/ee/lcs/classifiers/MacroclassifierTest.java
test/gr/auth/ee/lcs/classifiers/populationcontrol/FixedSizeDeletionTest.java
test/gr/auth/ee/lcs/data/representations/SimpleBooleanRepresentationTest.java
test/gr/auth/ee/lcs/data/representations/complex/ComplexRepresentationTest.java
test/gr/auth/ee/lcs/data/representations/complex/GenericMlRepresentationTest.java
test/gr/auth/ee/lcs/data/representations/complex/StrictMlRepresentationTest.java
test/gr/auth/ee/lcs/data/updateAlgorithms/SequentialMlUpdateAlgorithmTest.java
test/gr/auth/ee/lcs/evaluators/AccuracyEvaluatorTest.java
test/gr/auth/ee/lcs/evaluators/ExactMatchEvalutorTest.java
test/gr/auth/ee/lcs/evaluators/HammingLossEvaluatorTest.java
test/gr/auth/ee/lcs/evaluators/RecallEvaluatorTest.java
test/gr/auth/ee/lcs/geneticalgorithm/operators/SinglePointCrossoverTest.java
test/gr/auth/ee/lcs/geneticalgorithm/operators/UniformMutationTest.java
test/gr/auth/ee/lcs/geneticalgorithm/selectors/BestFitnessTournamentSelectorTest.java
test/gr/auth/ee/lcs/geneticalgorithm/selectors/RouletteSelectorTest.java
test/gr/auth/ee/lcs/utilities/BRSelectorTest.java
test/gr/auth/ee/lcs/utilities/ExtendedBitSetTest.java
test/gr/auth/ee/lcs/utilities/PWSelectorTest.java

Download

Click the following link to download LCSFramework-master.zip.

LCSFramework-master.zip




















Home »
  Java Free Code »
    Framework »




Framework
Framework Algorithm
Framework BlackBerry
Framework Collection
Framework Commandline
Framework Concurrency
Framework IRC
Framework LightWeight
Framework Log
Framework MediaPlayer
Framework MVC
Framework Network
Framework RPC
Framework Server
Framework UI