Metadata-Version: 1.0
Name: oll
Version: 0.1
Summary: Online machine learning library for Python (based on OLL C++ library)
Home-page: https://github.com/ikegami-yukino/madoka-python
Author: Yukino Ikegami
Author-email: yukino0131@me.com
License: UNKNOWN
Description: oll-python
        ==========
        This is a Python binding of oll, which is a library for machine learning.
        
        Currently, Oll 0.03 supports following algorithms:
        
        - Perceptron
        - Averaged Perceptron
        - Passive Agressive (PA, PA-I, PA-II)
        - ALMA (modified slightly from original)
        - Confidence Weighted Linear-Classification.
        
        For details of oll, see: http://code.google.com/p/oll
        
        ## Installation
        ```
          $ pip install git+https://github.com/ikegami-yukino/oll-python.git
        ```
         oll library is bundled, so you don't need to install it separately.
        
        ## Usage
        ```
          import oll
          o = oll.oll("CW")
          o.add({0: 1.0, 1: 2.0, 2: -1.0}, 1)
          o.classify({0:1.0, 1:1.0}), 6)
          o.save('oll.model')
          o.load('oll.model')
        ```
        ## Note
        - oll.cpp & oll.hpp : Copyright (c) 2011, Daisuke Okanohara
        - oll_swig_wrap.cxx is generated based on [oll-ruby](https://github.com/syou6162/oll-ruby)'s oll_swig.i
        
        ## License
        New BSD License.
        
        
        
        CHANGES
        =======
        
        0.1 (2013-10-11)
        ----------------
        
        Initial release.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Text Processing :: Linguistic
