Metadata-Version: 2.1
Name: C4point5
Version: 1.0.2
Summary: An implementation of C4.5 Algorithm
Home-page: https://github.com/nomancseku/C4point5
Author: Abdullah Al Noman
Author-email: nomancseku@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/nomancseku/C4point5/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# C4.5 Algorithm implementation. 
## This work is a part of my Pattern Recognition Lab on CSE, KHULNA UNIVERSITY.
## Abdullah Al Noman, CSE-KU

### Hello there,
### To use this module, open command prompt and type - *```pip install C4point5```*

after installing the module write code as below,
```
from C4point5 import C45

model = C45.C4point5([train dataset path])

model.readDataset()
model.preprocessData()
model.generateTree()
model.printTree()
model.predict()
model.evaluate([test dataset path])
model.viewTruePred([test dataset path])
```


