1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784
|
This package was debianized by Soeren Sonnenburg <sonne@debian.org>.
It was downloaded from http://www.cs.waikato.ac.nz/ml/weka/ .
The upstream Author is the Waikato Machine Learning Group
<wekalist@list.scms.waikato.ac.nz>, cf.
http://www.cs.waikato.ac.nz/~ml/people.html. If not otherwise mentioned
Copyright: (C) 1998-2008 University of Waikato.
License:
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 it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
On Debian systems, you can find the GPL license in:
/usr/share/common-licenses/GPL-2
--------
The file core/Statistics.java is Copyright 2001 University of Waikato and
Copyright 1999 CERN - European Organization for Nuclear Research.
Permission to use, copy, modify, distribute and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation. CERN and the University of Waikato make no representations
about the suitability of this software for any purpose. It is provided "as
is" without expressed or implied warranty.
--------
The files core/matrix/EigenvalueDecomposition.java core/matrix/Matrix.java
core/matrix/CholeskyDecomposition.java core/matrix/QRDecomposition.java
core/matrix/LUDecomposition.java core/matrix/SingularValueDecomposition.java
and core/matrix/Maths.java core/matrix/LinearRegression.java are
Copyright (C) 1999 The Mathworks and NIST
This software is a cooperative product of The MathWorks and the National
Institute of Standards and Technology (NIST) which has been released to the
public domain. Neither The MathWorks nor NIST assumes any responsibility
whatsoever for its use by other parties, and makes no guarantees, expressed
or implied, about its quality, reliability, or any other characteristic.
--------
The files core/AbstractStringDistanceFunction.java and
./weka/core/EditDistance.java are
Copyright (C) 2008 Bruno Woltzenlogel Paleo (http://www.logic.at/people/bruno/
; http://bruno-wp.blogspot.com/)
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.
--------
The files core/neighboursearch/CoverTree.java and
core/neighboursearch/covertrees/Stack.java are
Copyright (C) 2006 Alina Beygelzimer and Sham Kakade and John Langford.
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.
--------
The files in core/mathematicalexpression,
filters/unsupervised/instance/subsetbyexpression are
Copyright (c) 1989-1998 by Lucent Technologies and
Copyright 1996-1999 by Scott Hudson, Frank Flannery, C. Scott Ananian.
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted, provided
that the above copyright notice appear in all copies and that both the
copyright notice and this permission notice and warranty disclaimer appear
in supporting documentation, and that the name of Lucent Technologies, Bell
Labs or any Lucent entity not be used in advertising or publicity pertaining
to distribution of the software without specific, written prior permission.
Lucent disclaims all warranties with regard to this software, including all
implied warranties of merchantability and fitness. In no event shall Lucent
be liable for any special, indirect or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether in an action
of contract, negligence or other tortious action, arising out of or in
connection with the use or performance of this software.
Taken from this URL:
http://www.smlnj.org/license.html
This license is compatible with the GNU GPL (see section "Standard ML of New
Jersey Copyright License"):
http://www.gnu.org/licenses/license-list.html#StandardMLofNJ
--------
The files
core/pmml/Function.java
core/pmml/Expression.java
core/pmml/PMMLUtils.java
core/pmml/Apply.java
core/pmml/MiningSchema.java
core/pmml/NormDiscrete.java
core/pmml/MappingInfo.java
core/pmml/DefineFunction.java
core/pmml/BuiltInMath.java
core/pmml/BuiltInArithmetic.java
core/pmml/Discretize.java
core/pmml/TransformationDictionary.java
core/pmml/FieldMetaInfo.java
core/pmml/PMMLModel.java
core/pmml/MiningFieldMetaInfo.java
core/pmml/NormContinuous.java
core/pmml/Constant.java
core/pmml/TargetMetaInfo.java
core/pmml/PMMLFactory.java
core/pmml/DerivedFieldMetaInfo.java
core/xml/XStream.java
core/Environment.java
core/ClassloaderUtil.java
attributeSelection/CostSensitiveASEvaluation.java
attributeSelection/CostSensitiveAttributeEval.java
attributeSelection/CostSensitiveSubsetEval.java
attributeSelection/FilteredAttributeEval.java
attributeSelection/FilteredSubsetEval.java
filters/unsupervised/instance/ReservoirSample.java
classifiers/pmml/consumer/PMMLClassifier.java
classifiers/pmml/consumer/GeneralRegression.java
classifiers/pmml/consumer/Regression.java
classifiers/pmml/consumer/NeuralNetwork.java
experiment/DensityBasedClustererSplitEvaluator.java
gui/beans/FlowRunner.java
gui/beans/IncrementalClassifierEvaluatorCustomizer.java
gui/beans/InstanceStreamToBatchMaker.java
gui/beans/LogPanel.java
gui/beans/Startable.java
gui/beans/SerializedModelSaverCustomizer.java
gui/beans/SerializedModelSaver.java
gui/beans/SerializedModelSaverBeanInfo.java
gui/beans/InstanceStreamToBatchMakerBeanInfo.java
associations/HotSpot.java
core/MathematicalExpressionTest.java
attributeSelection/FilteredAttributeEvalTest.java
attributeSelection/ScatterSearchV1Test.java
attributeSelection/CostSensitiveSubsetEvalTest.java
attributeSelection/CostSensitiveAttributeEvalTest.java
attributeSelection/FilteredSubsetEvalTest.java
filters/unsupervised/instance/ReservoirSampleTest.java
classifiers/meta/RotationForestTest.java
classifiers/trees/LADTreeTest.java
classifiers/pmml/consumer/RegressionTest.java
classifiers/pmml/consumer/NeuralNetworkTest.java
classifiers/pmml/consumer/AllTests.java
classifiers/pmml/consumer/GeneralRegressionTest.java
classifiers/bayes/DMNBtextTest.java
classifiers/functions/LibLINEARTest.java
classifiers/rules/DTNBTest.java
associations/HotSpotTest.java
clusterers/CLOPETest.java
clusterers/sIBTest.java
are Copyright (C) 2008 Pentaho Corporation
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.
--------
The file src/main/java/weka/classifiers/meta/Vote.java is
Copyright (C) 2000 University of Waikato
Copyright (C) 2006 Roberto Perdisci
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.
--------
The files
classifiers/meta/ensembleSelection/EnsembleSelectionLibrary.java
classifiers/meta/ensembleSelection/EnsembleModelMismatchException.java
classifiers/EnsembleLibrary.java
classifiers/EnsembleLibraryModelComparator.java
classifiers/EnsembleLibraryModel.java
gui/EnsembleSelectionLibraryEditor.java
gui/EnsembleLibraryEditor.java
gui/ensembleLibraryEditor/DefaultModelsPanel.java
gui/ensembleLibraryEditor/AddModelsPanel.java
gui/ensembleLibraryEditor/tree/CheckBoxNodeEditor.java
gui/ensembleLibraryEditor/tree/DefaultNode.java
gui/ensembleLibraryEditor/tree/GenericObjectNode.java
gui/ensembleLibraryEditor/tree/NumberClassNotFoundException.java
gui/ensembleLibraryEditor/tree/CheckBoxNode.java
gui/ensembleLibraryEditor/tree/NumberNode.java
gui/ensembleLibraryEditor/tree/PropertyNode.java
gui/ensembleLibraryEditor/tree/ModelTreeNodeRenderer.java
gui/ensembleLibraryEditor/tree/ModelTreeNodeEditor.java
gui/ensembleLibraryEditor/tree/GenericObjectNodeEditor.java
gui/ensembleLibraryEditor/tree/NumberNodeEditor.java
gui/ensembleLibraryEditor/tree/InvalidInputException.java
gui/ensembleLibraryEditor/LoadModelsPanel.java
gui/ensembleLibraryEditor/ModelList.java
gui/ensembleLibraryEditor/ListModelsPanel.java
are Copyright (C) Robert Jung
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.
--------
The files
classifiers/misc/OSDL.java
classifiers/misc/MinMaxExtension.java
classifiers/misc/monotone/AbsoluteLossFunction.java
classifiers/misc/monotone/InstancesUtil.java
classifiers/misc/monotone/BooleanBitMatrix.java
classifiers/misc/monotone/Coordinates.java
classifiers/misc/monotone/MultiDimensionalSort.java
classifiers/misc/monotone/InstancesComparator.java
classifiers/misc/monotone/CumulativeDiscreteDistribution.java
classifiers/misc/monotone/OSDLCore.java
classifiers/misc/monotone/EnumerationIterator.java
classifiers/misc/monotone/NominalLossFunction.java
classifiers/misc/monotone/ZeroOneLossFunction.java
classifiers/misc/monotone/BitMatrix.java
classifiers/misc/monotone/DistributionUtils.java
classifiers/misc/monotone/DiscreteDistribution.java
classifiers/misc/OLM.java
classifiers/misc/OLMTest.java
classifiers/misc/OSDLTest.java
classifiers/misc/MinMaxExtensionTest.java
are Copyright (C) Stijn Lievens
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.
--------
The files
associations/Tertius.java
associations/tertius/IndividualInstances.java
associations/tertius/Body.java
associations/tertius/Rule.java
associations/tertius/AttributeValueLiteral.java
associations/tertius/Predicate.java
associations/tertius/Literal.java
associations/tertius/LiteralSet.java
associations/tertius/Head.java
associations/tertius/IndividualInstance.java
associations/tertius/IndividualLiteral.java
associations/tertius/SimpleLinkedList.java
are Copyright (C) 2003 Peter A. Flach, Nicolas Lachiche
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.
--------
The files
clusterers/DBScan.java
clusterers/OPTICS.java
clusterers/forOPTICSAndDBScan/DataObjects/EuclidianDataObject.java
clusterers/forOPTICSAndDBScan/Utils/PriorityQueueElement.java
clusterers/forOPTICSAndDBScan/Utils/EpsilonRange_ListElement.java
clusterers/forOPTICSAndDBScan/Utils/UpdateQueueElement.java
clusterers/forOPTICSAndDBScan/Utils/UpdateQueue.java
clusterers/forOPTICSAndDBScan/Utils/PriorityQueue.java
clusterers/forOPTICSAndDBScan/Databases/SequentialDatabase.java
clusterers/forOPTICSAndDBScan/OPTICS_GUI/OPTICS_Visualizer.java
clusterers/forOPTICSAndDBScan/OPTICS_GUI/GraphPanel.java
clusterers/forOPTICSAndDBScan/OPTICS_GUI/SERFileFilter.java
clusterers/forOPTICSAndDBScan/OPTICS_GUI/SERObject.java
clusterers/forOPTICSAndDBScan/OPTICS_GUI/ResultVectorTableModel.java
clusterers/forOPTICSAndDBScan/DataObjects/ManhattanDataObject.java
clusterers/forOPTICSAndDBScan/DataObjects/DataObject.java
clusterers/forOPTICSAndDBScan/Databases/Database.java
clusterers/forOPTICSAndDBScan/OPTICS_GUI/OPTICS_Visualizer.java
clusterers/forOPTICSAndDBScan/OPTICS_GUI/OPTICS_Visualizer.java
are
Copyright (C) 2004 Matthias Schubert, Zhanna
Melnikova-Albrecht, Rainer Holzmann
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.
--------
The files
associations/gsp/Element.java
associations/gsp/Sequence.java
associations/GeneralizedSequentialPatterns.java
are Copyright (C) 2007 Sebastian Beer
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.
--------
The files
classifiers/trees/ft/FTtree.java
classifiers/trees/ft/FTLeavesNode.java
classifiers/trees/ft/FTInnerNode.java
classifiers/trees/ft/FTNode.java
classifiers/trees/FT.java
are
Copyright (C) 2007 University of Porto, Porto, Portugal
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.
--------
The files
classifiers/bayes/blr/Prior.java
classifiers/bayes/blr/GaussianPriorImpl.java
classifiers/bayes/blr/LaplacePriorImpl.java
classifiers/bayes/BayesianLogisticRegression.java
are
Copyright (C) 2008 Illinois Institute of Technology
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.
--------
The files
core/AbstractStringDistanceFunction.java
core/EditDistance.java
are
Copyright (C) 2008 Bruno Woltzenlogel Paleo
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.
--------
The files
classifiers/meta/ensembleSelection/ModelBag.java
classifiers/meta/ensembleSelection/EnsembleSelectionLibraryModel.java
classifiers/meta/ensembleSelection/EnsembleMetricHelper.java
classifiers/meta/EnsembleSelection.java
are
Copyright (C) 2006 David Michael
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.
--------
The files
src/main/java/weka/attributeSelection/SubsetSizeForwardSelection.java
src/main/java/weka/attributeSelection/LFSMethods.java
src/main/java/weka/attributeSelection/LinearForwardSelection.java
are
Copyright (C) 2007 Martin Guetlein
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.
--------
The files
classifiers/functions/MultilayerPerceptronTest.java
classifiers/functions/PaceRegressionTest.java
are
Copyright (C) 2001 Malcolm Ware
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.
--------
The files
classifiers/meta/MultiBoostAB.java
classifiers/lazy/LBR.java
are
Copyright (C) 2001 Deakin University
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.
--------
The files
attributeSelection/FCBFSearch.java
attributeSelection/AttributeSetEvaluator.java
attributeSelection/SymmetricalUncertAttributeSetEval.java
are
Copyright (C) 2004 Data Mining and Machine Learning Lab, Computer
Science and Engineering Department, Fulton School of Engineering,
Arizona State University
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.
--------
The files
classifiers/trees/j48/C45PruneableClassifierTreeG.java
classifiers/trees/j48/GraftSplit.java
classifiers/trees/J48graft.java
are
Copyright (C) 2007 Geoff Webb & Janice Boughton
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.
--------
The files
classifiers/trees/BFTree.java
classifiers/trees/SimpleCart.java
are
Copyright (C) 2007 Haijian Shi
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.
--------
The file classifiers/functions/LibLINEAR.java is
Copyright (C) Benedikt Waldvogel
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.
--------
The file gui/SplashWindow.java is
Copyright (c) 2003-2005 Werner Randelshofer
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.
--------
The file clusterers/CLOPE.java is
Copyright (C) 2008 Alexander Smirnov
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.
--------
The file clusterers/CLOPE.java is
Copyright (C) 2008 Alexander Smirnov
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.
--------
The file attributeSelection/ScatterSearchV1.java is
Copyright (C) 2008 Adrian Pino
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.
--------
The file attributeSelection/LatentSemanticAnalysis.java is
Copyright (C) 2008 Amri Napolitano
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.
--------
The file filters/unsupervised/attribute/MathExpression.java is
Copyright (C) 2004 Prados Julien
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.
--------
The file filters/unsupervised/instance/Normalize.java is
Copyright (C) 2003 Prados Julien
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.
--------
The file filters/supervised/instance/SMOTE.java is
Copyright (C) 2008 Ryan Lichtenwalter
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.
--------
The file classifiers/misc/FLR.java is
Copyright (C) 2002 Ioannis N. Athanasiadis
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.
--------
The file classifiers/meta/RotationForest.java is
Copyright (C) 2008 Juan Jose Rodriguez
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.
--------
The file classifiers/meta/Decorate.java is
Copyright (C) 2002 Prem Melville
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.
--------
The file classifiers/lazy/KStar.java is
Copyright (c) 1995-97 by Len Trigg
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.
--------
The classifiers/mi/CitationKNN.java is
Copyright (C) 2005 Miguel Garcia Torres
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.
--------
The file classifiers/bayes/WAODE.java is
Copyright 2006 Liangxiao Jiang
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.
--------
The file classifiers/bayes/DMNBtext.java is
Copyright (C) 2008 Jiang Su
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.
--------
The file classifiers/bayes/net/search/local/LAGDHillClimber.java
is Copyright (C) 2005 Manuel Neubach
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.
--------
The file classifiers/bayes/AODEsr.java is
Copyright (C) 2007 Fei ZHENG and Janice Boughton
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.
--------
The file classifiers/bayes/HNB.java is
Copyright (C) 2004 Liangxiao Jiang
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.
--------
The file classifiers/bayes/NaiveBayesMultinomialUpdateable.java is
Copyright (C) 2007 Jiang Su
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.
--------
The file classifiers/bayes/AODE.java is
Copyright (C) 2003 Janice Boughton and Zhihai Wang
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.
--------
The file classifiers/functions/SMOreg.java is
Copyright (C) 2002 Sylvain Roy
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.
--------
The file classifiers/functions/Winnow.java is
Copyright (C) 2002 J. Lindgren
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.
--------
The file classifiers/functions/supportVector/RBFKernel.java is
Copyright (C) 2005 J. Lindgren
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.
--------
The file classifiers/functions/LibSVM.java is
Copyright (C) 2005 Yasser EL-Manzalawy
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.
--------
The file classifiers/rules/NNge.java is
Copyright (C) 2002 Brent Martin
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.
--------
The file classifiers/BVDecomposeSegCVSub.java is
Copyright (C) 2003 Paul Conilione
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.
--------
The file filters/unsupervised/attribute/StandardizeTest.java is
Copyright 2002 Eibe Frank
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.
|