Skip to content
This repository has been archived by the owner on Jul 10, 2021. It is now read-only.

Release 0.6: Bug Fixes, Multithreading on CPU, Voting Ensemble Support

Pre-release
Pre-release
Compare
Choose a tag to compare
@alexjc alexjc released this 01 Jan 18:00
· 60 commits to master since this release

The sixth official release of scikit-neuralnetwork — version 0.6 — is available on PYPI from the following URL:
https://pypi.python.org/pypi/scikit-neuralnetwork

Or simply type this to install the latest version directly from the command-line with pip:

pip install scikit-neuralnetwork

This release includes a large number of bug fixes (e.g. unpickled binary classifiers), small features (leveraging voting ensembles from sklearn) and adds a helper function for running on multiple CPU threads. Read on for details!

Consult the documentation for more information:
http://scikit-neuralnetwork.readthedocs.org/en/stable/

The release file is attached here for reference too.

Features

  • Setting the number of CPU threads via platform module. #165
  • Support and tests for use with Voting Ensemble. #154

Bug Fixes

  • Fix for datasets strictly smaller than the batch size. #158
  • Binary classifier works correctly after unpickling. #161