Skip to content

Commit

Permalink
prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
fracpete committed Jul 12, 2024
1 parent e9fab30 commit 28d3901
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Makes [Weka](https://www.cs.waikato.ac.nz/ml/weka/) algorithms available in [scikit-learn](https://scikit-learn.org/).

Built on top of the [python-weka-wrapper3](https://github.com/fracpete/python-weka-wrapper3)
library, it uses the [python-javabridge](https://pypi.python.org/pypi/python-javabridge) library
library, it uses the [jpype](https://github.com/jpype-project/jpype) library
under the hood for communicating with Weka objects in the Java Virtual Machine.


Expand All @@ -18,7 +18,7 @@ Things to be aware of:

* You need to start the JVM in your Python code before you can use Weka (and stop it again).
* Unlikely to work in multi-threaded/process environments (like flask).
* Jupyter Notebooks do not play nice with python-javabridge, as you might have to restart the kernel in order to be able
* Jupyter Notebooks do not play nice with jpype, as you might have to restart the kernel in order to be able
to restart the JVM (e.g., with additional packages).
* The conversion to Weka data structures involves guesswork, i.e., if targets are to be treated as nominal, you need
to convert the numeric values to strings (e.g., using `to_nominal_labels` and/or `to_nominal_attributes` functions
Expand All @@ -32,7 +32,7 @@ The library has the following requirements:

* Python 3 (does not work with Python 2)

* python-weka-wrapper (>=0.2.5, required)
* python-weka-wrapper (>=0.3.0, required)

* OpenJDK 8 or later (11 is recommended)

Expand Down
6 changes: 3 additions & 3 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@

# General information about the project.
project = u'sklearn-weka-plugin'
copyright = u'2021-2023, Peter "fracpete" Reutemann'
copyright = u'2021-2024, Peter "fracpete" Reutemann'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.0.8'
version = '0.1.0'
# The full version, including alpha/beta/rc tags.
release = '0.0.8'
release = '0.1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 28d3901

Please sign in to comment.