Metadata-Version: 1.1
Name: deepvec
Version: 0.2
Summary: Tensorflow wrapper for classification
Home-page: https://github.com/nuhamozaini
Author: Nuha Almozaini
Author-email: nuha.mozaini@gmail.com
License: MIT
Download-URL: https://github.com/nuhamozaini/deepvec/archive/v_02.tar.gz
Description: ===============
        DeepVec
        ===============
        
        Tensorflow wrapper for classification
        
        
        -------------
        Requirements
        -------------
        
        * Python +3.x
        
        --------------
        Installation
        --------------
        
        .. code-block:: bash
        
            pip install deepvec
        
        -------
        Notes
        -------
        * The library is for classification datasets (labeled).
        * The library accepts CSV of two columns, text (sentences) column and label column (numeric data only).
        * The library transforms text to vector, extracts features from vectors then classifies.
        
        -------
        Usage
        -------
        
        
        .. code-block:: python
        
            from deepvec.deep_vec import DeepVec
        
            obj = DeepVec(path='/path/to/file.csv', feature='text_col', label='label_col')
            data_frame = obj.prepare()
            obj.proceed(data_frame)
        
        -------------
        Contributing
        -------------
        
        You are welcome.
        
        
        --------
        License
        --------
        
        
        The library is available as open source under the terms of the `MIT License. <https://opensource.org/licenses/MIT>`_
        
Keywords: classification,deep learning,tensorflow,keras,pandas
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
