gyb-classification-model 0.1.4__tar.gz → 0.1.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/GYB_classification_model.egg-info/PKG-INFO +14 -10
  2. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/PKG-INFO +14 -10
  3. gyb_classification_model-0.1.5/README.md +23 -0
  4. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/setup.py +1 -1
  5. gyb_classification_model-0.1.4/README.md +0 -19
  6. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/GYB_classification_model.egg-info/SOURCES.txt +0 -0
  7. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/GYB_classification_model.egg-info/dependency_links.txt +0 -0
  8. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/GYB_classification_model.egg-info/requires.txt +0 -0
  9. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/GYB_classification_model.egg-info/top_level.txt +0 -0
  10. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/LICENSE +0 -0
  11. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/MANIFEST.in +0 -0
  12. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/gyb_classification_model/__init__.py +0 -0
  13. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/gyb_classification_model/predictor.py +0 -0
  14. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/models/MedicalReportClassifierV8.pkl +0 -0
  15. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/models/MedicalReportLabelMapV8.pkl +0 -0
  16. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/models/MedicalReportVectorizerV8.pkl +0 -0
  17. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/models/OnlyDeliverSlipPharmOrderModelV4.pkl +0 -0
  18. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/models/OnlyDeliverSlipPharmOrderVectorizerV4.pkl +0 -0
  19. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/models/OnlyDeliverSlipPharmOrderlabel_mapV4.pkl +0 -0
  20. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/models/label_mapV27.pkl +0 -0
  21. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/models/textClassificationModelV27.pkl +0 -0
  22. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/models/vectorizerV27.pkl +0 -0
  23. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/setup.cfg +0 -0
  24. {gyb_classification_model-0.1.4 → gyb_classification_model-0.1.5}/test/test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gyb-classification-model
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: ML classification models package
5
5
  Home-page: https://github.com/GreenBills/GYB-Classification-Model
6
6
  Author: Hrutik-M
@@ -23,22 +23,26 @@ Dynamic: requires-dist
23
23
  Dynamic: requires-python
24
24
  Dynamic: summary
25
25
 
26
- GYB Classification Model
26
+ # GYB Classification Model
27
27
 
28
- gyb_classification_model is a Python package for classifying medical documents.
29
- It provides a simple interface so you can run predictions directly on raw text.
28
+ `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.
30
29
 
31
- 📦 Installation
30
+ ## 📦 Installation
31
+
32
+ ```bash
32
33
  pip install gyb-classification-model
34
+ ```
33
35
 
36
+ ## 🚀 Usage
34
37
 
35
- 🚀 Usage
38
+ ```python
36
39
  from gyb_classification_model import predictor
37
40
 
38
41
  text = '''
39
- 18 19 20 L.HAIG BEMBRY SIDER,JEFFREY # 3 Left Shoulder Arthroscopy 7/24/2025
40
- '''
42
+ 18 19 20 L.HAIG BEMBRY SIDER,JEFFREY # 3 Left Shoulder Arthroscopy 7/24/2025
43
+ '''
41
44
 
42
- predictor = predictor.predict_text(text)
45
+ prediction = predictor.predict_text(text)
43
46
 
44
- print(predictor)
47
+ print(prediction)
48
+ ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gyb-classification-model
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: ML classification models package
5
5
  Home-page: https://github.com/GreenBills/GYB-Classification-Model
6
6
  Author: Hrutik-M
@@ -23,22 +23,26 @@ Dynamic: requires-dist
23
23
  Dynamic: requires-python
24
24
  Dynamic: summary
25
25
 
26
- GYB Classification Model
26
+ # GYB Classification Model
27
27
 
28
- gyb_classification_model is a Python package for classifying medical documents.
29
- It provides a simple interface so you can run predictions directly on raw text.
28
+ `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.
30
29
 
31
- 📦 Installation
30
+ ## 📦 Installation
31
+
32
+ ```bash
32
33
  pip install gyb-classification-model
34
+ ```
33
35
 
36
+ ## 🚀 Usage
34
37
 
35
- 🚀 Usage
38
+ ```python
36
39
  from gyb_classification_model import predictor
37
40
 
38
41
  text = '''
39
- 18 19 20 L.HAIG BEMBRY SIDER,JEFFREY # 3 Left Shoulder Arthroscopy 7/24/2025
40
- '''
42
+ 18 19 20 L.HAIG BEMBRY SIDER,JEFFREY # 3 Left Shoulder Arthroscopy 7/24/2025
43
+ '''
41
44
 
42
- predictor = predictor.predict_text(text)
45
+ prediction = predictor.predict_text(text)
43
46
 
44
- print(predictor)
47
+ print(prediction)
48
+ ```
@@ -0,0 +1,23 @@
1
+ # GYB Classification Model
2
+
3
+ `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.
4
+
5
+ ## 📦 Installation
6
+
7
+ ```bash
8
+ pip install gyb-classification-model
9
+ ```
10
+
11
+ ## 🚀 Usage
12
+
13
+ ```python
14
+ from gyb_classification_model import predictor
15
+
16
+ text = '''
17
+ 18 19 20 L.HAIG BEMBRY SIDER,JEFFREY # 3 Left Shoulder Arthroscopy 7/24/2025
18
+ '''
19
+
20
+ prediction = predictor.predict_text(text)
21
+
22
+ print(prediction)
23
+ ```
@@ -6,7 +6,7 @@ long_description = (curr_directory / "README.md").read_text()
6
6
 
7
7
  setup(
8
8
  name='gyb-classification-model', # Package name (what you'll pip install)
9
- version='0.1.4',
9
+ version='0.1.5',
10
10
  author='Hrutik-M',
11
11
  author_email='hrutik.m@codearray.tech',
12
12
  description='ML classification models package',
@@ -1,19 +0,0 @@
1
- GYB Classification Model
2
-
3
- gyb_classification_model is a Python package for classifying medical documents.
4
- It provides a simple interface so you can run predictions directly on raw text.
5
-
6
- 📦 Installation
7
- pip install gyb-classification-model
8
-
9
-
10
- 🚀 Usage
11
- from gyb_classification_model import predictor
12
-
13
- text = '''
14
- 18 19 20 L.HAIG BEMBRY SIDER,JEFFREY # 3 Left Shoulder Arthroscopy 7/24/2025
15
- '''
16
-
17
- predictor = predictor.predict_text(text)
18
-
19
- print(predictor)