├── .gitignore ├── CHANGES.rst ├── DESCRIPTION.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── doc ├── Makefile ├── make.bat └── source │ ├── _static │ ├── logo.jpg │ ├── logo.pdf │ ├── logo.png │ ├── logo.svg │ └── screenshot1.png │ ├── commandline.rst │ ├── conf.py │ ├── development.rst │ ├── docker.rst │ ├── examples.rst │ ├── flow.rst │ ├── index.rst │ ├── install.rst │ ├── modules.rst │ ├── troubleshooting.rst │ ├── weka.core.rst │ ├── weka.flow.rst │ ├── weka.plot.rst │ └── weka.rst ├── docker ├── 0.2.10_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.10_cuda10.2 │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.11_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.11_cuda10.2 │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.12_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.12_cuda10.2 │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.13_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.13_cuda10.2 │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.14_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.14_cuda10.2 │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.15_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.16_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.8_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.8_cuda10.2 │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.9_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.2.9_cuda10.2 │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.3.0_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.3.1_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── 0.3.2_cpu │ ├── Dockerfile │ ├── README.md │ └── bash.bashrc ├── README.md └── packages │ ├── Dockerfile │ ├── README.md │ ├── install_packages.py │ └── test_packages.py ├── html ├── github │ └── redirect.zip └── pypi │ ├── index.html │ ├── redirect.zip │ └── sphinx.zip ├── java ├── Makefile └── src │ └── weka │ ├── classifiers │ ├── EvaluationWrapper.java │ ├── KernelHelper.java │ └── timeseries │ │ └── eval │ │ ├── TSEvalModuleHelper.java │ │ └── TSEvaluationHelper.java │ ├── core │ ├── ClassHelper.java │ └── PickleHelper.java │ └── nonpublic │ ├── PrivateMember.java │ └── PrivateMethod.java ├── media └── channel │ └── channel.xcf ├── python ├── __init__.py └── weka │ ├── __init__.py │ ├── associations.py │ ├── attribute_selection.py │ ├── classifiers.py │ ├── clusterers.py │ ├── core │ ├── __init__.py │ ├── capabilities.py │ ├── classes.py │ ├── converters.py │ ├── database.py │ ├── dataset.py │ ├── distances.py │ ├── jvm.py │ ├── packages.py │ ├── serialization.py │ ├── stemmers.py │ ├── stopwords.py │ ├── systeminfo.py │ ├── tokenizers.py │ ├── typeconv.py │ ├── utils.py │ └── version.py │ ├── datagenerators.py │ ├── experiments.py │ ├── filters.py │ ├── flow │ ├── __init__.py │ ├── container.py │ ├── conversion.py │ ├── sink.py │ ├── source.py │ └── transformer.py │ ├── lib │ ├── arpack_combined.jar │ ├── core.jar │ ├── mtj.jar │ ├── pkg_suggestions.csv │ ├── python-weka-wrapper-src.jar │ ├── python-weka-wrapper.jar │ ├── weka-src.jar │ └── weka.jar │ ├── plot │ ├── __init__.py │ ├── classifiers.py │ ├── clusterers.py │ ├── dataset.py │ ├── experiments.py │ └── graph.py │ └── timeseries.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── wekatests ├── __init__.py ├── all_tests.py ├── associations.py ├── attribute_selection.py ├── classifiers.py ├── clusterers.py ├── coretests ├── __init__.py ├── all_tests.py ├── capabilities.py ├── classes.py ├── converters.py ├── dataset.py ├── serialization.py ├── stemmers.py ├── stopwords.py ├── tokenizers.py ├── typeconv.py └── version.py ├── data ├── airline.arff ├── anneal.ORIG.arff ├── anneal.arff ├── autoPrice.arff ├── bodyfat.arff ├── bolts.arff ├── diabetes.arff ├── iris.arff ├── nursery.arff ├── reutersTop10Randomized_1perc_shortened-test.arff ├── reutersTop10Randomized_1perc_shortened-train.arff └── reutersTop10Randomized_1perc_shortened.arff ├── datagenerators.py ├── experiments.py ├── filters.py ├── flowtests ├── __init__.py └── control.py ├── plottests ├── __init__.py ├── all_tests.py ├── classifiers.py ├── clusterers.py ├── dataset.py ├── experiments.py └── graph.py ├── tests ├── __init__.py └── weka_test.py └── timeseries.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/DESCRIPTION.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/RELEASE.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/_static/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/_static/logo.jpg -------------------------------------------------------------------------------- /doc/source/_static/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/_static/logo.pdf -------------------------------------------------------------------------------- /doc/source/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/_static/logo.png -------------------------------------------------------------------------------- /doc/source/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/_static/logo.svg -------------------------------------------------------------------------------- /doc/source/_static/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/_static/screenshot1.png -------------------------------------------------------------------------------- /doc/source/commandline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/commandline.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/development.rst -------------------------------------------------------------------------------- /doc/source/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/docker.rst -------------------------------------------------------------------------------- /doc/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/examples.rst -------------------------------------------------------------------------------- /doc/source/flow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/flow.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/install.rst -------------------------------------------------------------------------------- /doc/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/modules.rst -------------------------------------------------------------------------------- /doc/source/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/troubleshooting.rst -------------------------------------------------------------------------------- /doc/source/weka.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/weka.core.rst -------------------------------------------------------------------------------- /doc/source/weka.flow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/weka.flow.rst -------------------------------------------------------------------------------- /doc/source/weka.plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/weka.plot.rst -------------------------------------------------------------------------------- /doc/source/weka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/doc/source/weka.rst -------------------------------------------------------------------------------- /docker/0.2.10_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.10_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.10_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.10_cpu/README.md -------------------------------------------------------------------------------- /docker/0.2.10_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.10_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.10_cuda10.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.10_cuda10.2/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.10_cuda10.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.10_cuda10.2/README.md -------------------------------------------------------------------------------- /docker/0.2.10_cuda10.2/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.10_cuda10.2/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.11_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.11_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.11_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.11_cpu/README.md -------------------------------------------------------------------------------- /docker/0.2.11_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.11_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.11_cuda10.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.11_cuda10.2/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.11_cuda10.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.11_cuda10.2/README.md -------------------------------------------------------------------------------- /docker/0.2.11_cuda10.2/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.11_cuda10.2/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.12_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.12_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.12_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.12_cpu/README.md -------------------------------------------------------------------------------- /docker/0.2.12_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.12_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.12_cuda10.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.12_cuda10.2/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.12_cuda10.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.12_cuda10.2/README.md -------------------------------------------------------------------------------- /docker/0.2.12_cuda10.2/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.12_cuda10.2/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.13_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.13_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.13_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.13_cpu/README.md -------------------------------------------------------------------------------- /docker/0.2.13_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.13_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.13_cuda10.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.13_cuda10.2/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.13_cuda10.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.13_cuda10.2/README.md -------------------------------------------------------------------------------- /docker/0.2.13_cuda10.2/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.13_cuda10.2/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.14_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.14_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.14_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.14_cpu/README.md -------------------------------------------------------------------------------- /docker/0.2.14_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.14_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.14_cuda10.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.14_cuda10.2/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.14_cuda10.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.14_cuda10.2/README.md -------------------------------------------------------------------------------- /docker/0.2.14_cuda10.2/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.14_cuda10.2/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.15_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.15_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.15_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.15_cpu/README.md -------------------------------------------------------------------------------- /docker/0.2.15_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.15_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.16_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.16_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.16_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.16_cpu/README.md -------------------------------------------------------------------------------- /docker/0.2.16_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.16_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.8_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.8_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.8_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.8_cpu/README.md -------------------------------------------------------------------------------- /docker/0.2.8_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.8_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.8_cuda10.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.8_cuda10.2/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.8_cuda10.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.8_cuda10.2/README.md -------------------------------------------------------------------------------- /docker/0.2.8_cuda10.2/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.8_cuda10.2/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.9_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.9_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.9_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.9_cpu/README.md -------------------------------------------------------------------------------- /docker/0.2.9_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.9_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.2.9_cuda10.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.9_cuda10.2/Dockerfile -------------------------------------------------------------------------------- /docker/0.2.9_cuda10.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.9_cuda10.2/README.md -------------------------------------------------------------------------------- /docker/0.2.9_cuda10.2/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.2.9_cuda10.2/bash.bashrc -------------------------------------------------------------------------------- /docker/0.3.0_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.3.0_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.3.0_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.3.0_cpu/README.md -------------------------------------------------------------------------------- /docker/0.3.0_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.3.0_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.3.1_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.3.1_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.3.1_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.3.1_cpu/README.md -------------------------------------------------------------------------------- /docker/0.3.1_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.3.1_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/0.3.2_cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.3.2_cpu/Dockerfile -------------------------------------------------------------------------------- /docker/0.3.2_cpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.3.2_cpu/README.md -------------------------------------------------------------------------------- /docker/0.3.2_cpu/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/0.3.2_cpu/bash.bashrc -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/packages/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/packages/Dockerfile -------------------------------------------------------------------------------- /docker/packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/packages/README.md -------------------------------------------------------------------------------- /docker/packages/install_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/packages/install_packages.py -------------------------------------------------------------------------------- /docker/packages/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/docker/packages/test_packages.py -------------------------------------------------------------------------------- /html/github/redirect.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/html/github/redirect.zip -------------------------------------------------------------------------------- /html/pypi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/html/pypi/index.html -------------------------------------------------------------------------------- /html/pypi/redirect.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/html/pypi/redirect.zip -------------------------------------------------------------------------------- /html/pypi/sphinx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/html/pypi/sphinx.zip -------------------------------------------------------------------------------- /java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/java/Makefile -------------------------------------------------------------------------------- /java/src/weka/classifiers/EvaluationWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/java/src/weka/classifiers/EvaluationWrapper.java -------------------------------------------------------------------------------- /java/src/weka/classifiers/KernelHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/java/src/weka/classifiers/KernelHelper.java -------------------------------------------------------------------------------- /java/src/weka/classifiers/timeseries/eval/TSEvalModuleHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/java/src/weka/classifiers/timeseries/eval/TSEvalModuleHelper.java -------------------------------------------------------------------------------- /java/src/weka/classifiers/timeseries/eval/TSEvaluationHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/java/src/weka/classifiers/timeseries/eval/TSEvaluationHelper.java -------------------------------------------------------------------------------- /java/src/weka/core/ClassHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/java/src/weka/core/ClassHelper.java -------------------------------------------------------------------------------- /java/src/weka/core/PickleHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/java/src/weka/core/PickleHelper.java -------------------------------------------------------------------------------- /java/src/weka/nonpublic/PrivateMember.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/java/src/weka/nonpublic/PrivateMember.java -------------------------------------------------------------------------------- /java/src/weka/nonpublic/PrivateMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/java/src/weka/nonpublic/PrivateMethod.java -------------------------------------------------------------------------------- /media/channel/channel.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/media/channel/channel.xcf -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/weka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/weka/associations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/associations.py -------------------------------------------------------------------------------- /python/weka/attribute_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/attribute_selection.py -------------------------------------------------------------------------------- /python/weka/classifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/classifiers.py -------------------------------------------------------------------------------- /python/weka/clusterers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/clusterers.py -------------------------------------------------------------------------------- /python/weka/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/__init__.py -------------------------------------------------------------------------------- /python/weka/core/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/capabilities.py -------------------------------------------------------------------------------- /python/weka/core/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/classes.py -------------------------------------------------------------------------------- /python/weka/core/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/converters.py -------------------------------------------------------------------------------- /python/weka/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/database.py -------------------------------------------------------------------------------- /python/weka/core/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/dataset.py -------------------------------------------------------------------------------- /python/weka/core/distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/distances.py -------------------------------------------------------------------------------- /python/weka/core/jvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/jvm.py -------------------------------------------------------------------------------- /python/weka/core/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/packages.py -------------------------------------------------------------------------------- /python/weka/core/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/serialization.py -------------------------------------------------------------------------------- /python/weka/core/stemmers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/stemmers.py -------------------------------------------------------------------------------- /python/weka/core/stopwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/stopwords.py -------------------------------------------------------------------------------- /python/weka/core/systeminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/systeminfo.py -------------------------------------------------------------------------------- /python/weka/core/tokenizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/tokenizers.py -------------------------------------------------------------------------------- /python/weka/core/typeconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/typeconv.py -------------------------------------------------------------------------------- /python/weka/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/utils.py -------------------------------------------------------------------------------- /python/weka/core/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/core/version.py -------------------------------------------------------------------------------- /python/weka/datagenerators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/datagenerators.py -------------------------------------------------------------------------------- /python/weka/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/experiments.py -------------------------------------------------------------------------------- /python/weka/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/filters.py -------------------------------------------------------------------------------- /python/weka/flow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/flow/__init__.py -------------------------------------------------------------------------------- /python/weka/flow/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/flow/container.py -------------------------------------------------------------------------------- /python/weka/flow/conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/flow/conversion.py -------------------------------------------------------------------------------- /python/weka/flow/sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/flow/sink.py -------------------------------------------------------------------------------- /python/weka/flow/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/flow/source.py -------------------------------------------------------------------------------- /python/weka/flow/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/flow/transformer.py -------------------------------------------------------------------------------- /python/weka/lib/arpack_combined.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/lib/arpack_combined.jar -------------------------------------------------------------------------------- /python/weka/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/lib/core.jar -------------------------------------------------------------------------------- /python/weka/lib/mtj.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/lib/mtj.jar -------------------------------------------------------------------------------- /python/weka/lib/pkg_suggestions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/lib/pkg_suggestions.csv -------------------------------------------------------------------------------- /python/weka/lib/python-weka-wrapper-src.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/lib/python-weka-wrapper-src.jar -------------------------------------------------------------------------------- /python/weka/lib/python-weka-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/lib/python-weka-wrapper.jar -------------------------------------------------------------------------------- /python/weka/lib/weka-src.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/lib/weka-src.jar -------------------------------------------------------------------------------- /python/weka/lib/weka.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/lib/weka.jar -------------------------------------------------------------------------------- /python/weka/plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/plot/__init__.py -------------------------------------------------------------------------------- /python/weka/plot/classifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/plot/classifiers.py -------------------------------------------------------------------------------- /python/weka/plot/clusterers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/plot/clusterers.py -------------------------------------------------------------------------------- /python/weka/plot/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/plot/dataset.py -------------------------------------------------------------------------------- /python/weka/plot/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/plot/experiments.py -------------------------------------------------------------------------------- /python/weka/plot/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/plot/graph.py -------------------------------------------------------------------------------- /python/weka/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/python/weka/timeseries.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wekatests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wekatests/all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/all_tests.py -------------------------------------------------------------------------------- /tests/wekatests/associations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/associations.py -------------------------------------------------------------------------------- /tests/wekatests/attribute_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/attribute_selection.py -------------------------------------------------------------------------------- /tests/wekatests/classifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/classifiers.py -------------------------------------------------------------------------------- /tests/wekatests/clusterers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/clusterers.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wekatests/coretests/all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/all_tests.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/capabilities.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/classes.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/converters.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/dataset.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/serialization.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/stemmers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/stemmers.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/stopwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/stopwords.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/tokenizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/tokenizers.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/typeconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/typeconv.py -------------------------------------------------------------------------------- /tests/wekatests/coretests/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/coretests/version.py -------------------------------------------------------------------------------- /tests/wekatests/data/airline.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/airline.arff -------------------------------------------------------------------------------- /tests/wekatests/data/anneal.ORIG.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/anneal.ORIG.arff -------------------------------------------------------------------------------- /tests/wekatests/data/anneal.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/anneal.arff -------------------------------------------------------------------------------- /tests/wekatests/data/autoPrice.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/autoPrice.arff -------------------------------------------------------------------------------- /tests/wekatests/data/bodyfat.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/bodyfat.arff -------------------------------------------------------------------------------- /tests/wekatests/data/bolts.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/bolts.arff -------------------------------------------------------------------------------- /tests/wekatests/data/diabetes.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/diabetes.arff -------------------------------------------------------------------------------- /tests/wekatests/data/iris.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/iris.arff -------------------------------------------------------------------------------- /tests/wekatests/data/nursery.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/nursery.arff -------------------------------------------------------------------------------- /tests/wekatests/data/reutersTop10Randomized_1perc_shortened-test.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/reutersTop10Randomized_1perc_shortened-test.arff -------------------------------------------------------------------------------- /tests/wekatests/data/reutersTop10Randomized_1perc_shortened-train.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/reutersTop10Randomized_1perc_shortened-train.arff -------------------------------------------------------------------------------- /tests/wekatests/data/reutersTop10Randomized_1perc_shortened.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/data/reutersTop10Randomized_1perc_shortened.arff -------------------------------------------------------------------------------- /tests/wekatests/datagenerators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/datagenerators.py -------------------------------------------------------------------------------- /tests/wekatests/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/experiments.py -------------------------------------------------------------------------------- /tests/wekatests/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/filters.py -------------------------------------------------------------------------------- /tests/wekatests/flowtests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wekatests/flowtests/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/flowtests/control.py -------------------------------------------------------------------------------- /tests/wekatests/plottests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wekatests/plottests/all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/plottests/all_tests.py -------------------------------------------------------------------------------- /tests/wekatests/plottests/classifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/plottests/classifiers.py -------------------------------------------------------------------------------- /tests/wekatests/plottests/clusterers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/plottests/clusterers.py -------------------------------------------------------------------------------- /tests/wekatests/plottests/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/plottests/dataset.py -------------------------------------------------------------------------------- /tests/wekatests/plottests/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/plottests/experiments.py -------------------------------------------------------------------------------- /tests/wekatests/plottests/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/plottests/graph.py -------------------------------------------------------------------------------- /tests/wekatests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/wekatests/tests/weka_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/tests/weka_test.py -------------------------------------------------------------------------------- /tests/wekatests/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fracpete/python-weka-wrapper3/HEAD/tests/wekatests/timeseries.py --------------------------------------------------------------------------------