Metadata-Version: 2.4
Name: gyb-classification-model
Version: 0.1.4
Summary: ML classification models package
Home-page: https://github.com/GreenBills/GYB-Classification-Model
Author: Hrutik-M
Author-email: hrutik.m@codearray.tech
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas==2.2.3
Requires-Dist: scikit-learn==1.6.1
Requires-Dist: seaborn==0.13.2
Requires-Dist: nltk==3.9.1
Requires-Dist: xgboost==3.0.0
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

GYB Classification Model

gyb_classification_model is a Python package for classifying medical documents.
It provides a simple interface so you can run predictions directly on raw text.

📦 Installation
pip install gyb-classification-model


🚀 Usage
from gyb_classification_model import predictor

text = '''
        18 19 20 L.HAIG BEMBRY SIDER,JEFFREY # 3 Left Shoulder Arthroscopy 7/24/2025
    '''

predictor = predictor.predict_text(text)

print(predictor)
