This repository has been archived by the owner on Apr 2, 2020. It is now read-only.
Release v0.3.0
- added method
ndarray_to_instances
toweka.converters
module for converting Numpy 2-dimensional array intoInstances
object - added method
plot_learning_curve
toweka.plot.classifiers
module for creating learning curves for multiple classifiers for a specific metric - added plotting of experiments with
plot_experiment
methid inweka.plot.experiments
module Instance.create_instance
method now takes list of tuples (index, internal float value) when generating sparse instances- added
weka.core.database
module for loading data from a database - added
make_copy
class method toClusterer
class - added
make_copy
class method toAssociator
class - added
make_copy
class method toFilter
class - added
make_copy
class method toDataGenerator
class - most classes (like Classifier and Filter) now have a default classname value in the constructor
- added
TextDirectoryLoader
class toweka.core.converters
- moved all methods from
weka.core.utils
toweka.core.classes
- fixed
Attribute.index_of
method for determining label index - fixed
Attribute.add_string_value
method (used incorrect JNI parameter) create_instance
andcreate_sparse_instance
methods of classInstance
now ensure that list values are float- added
to_help
method toOptionHandler
class which outputs a help string generated from the base class's
globalInfo
andlistOptions
methods - fixed
test_model
method ofEvaluation
class when supplying aPredictionOutput
object (previously generatedNo dataset structure provided!
exception) - added
batch_finished
method toFilter
class for incremental filtering - added
line_plot
method toweka.plot.dataset
module for plotting dataset using internal format (one line plot per instance) - added
is_serializable
property toJavaObject
class - added
has_class
convenience property toInstance
class - added
__repr__
method toJavaObject
classes (simply callstoString()
method) - added
Stemmer
class in moduleweka.core.stemmers
- added
Stopwords
class in moduleweka.core.stopwords
- added
Tokenizer
class in moduleweka.core.tokenizers
- added
StringToWordVector
filter class in moduleweka.filters
- added simple workflow engine (see documentation on Flow)