Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pritishsingla/nbsvm_sklearn

Scikit-learn style wrapper for the NBSVM algorithm for text classification
https://github.com/pritishsingla/nbsvm_sklearn

machine-learning nbsvm nbsvm-classifier nlp python scikit-learn text-classification

Last synced: 3 days ago
JSON representation

Scikit-learn style wrapper for the NBSVM algorithm for text classification

Awesome Lists containing this project

README

        

# nbsvm-sklearn

A Scikit-learn wrapper for the NBSVM algorithm. To read more about the same, go [here](https://www.aclweb.org/anthology/P12-2018)

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install nbsvm-sklearn.

```bash
pip install nbsvm-sklearn
```
Code has been tested on python>=3.6

## Usage

```python
from nbsvm import NBSVMClassifier

clf = NBSVMClassifier() # initialize the model
clf.fit(X, y) # train the classifier; y{0,1}
clf.predict(X) # get binary predictions

```
Full Code documentation available [here](nbsvm/nbsvm.py)

## Updates

Version 0.0.5: Added Platt-scaling

## Future Work
* Add support for multi-class classification
* Handle sparse matrices as inputs
* Handle ```pd.Series``` input format for labels

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)