JobSelect 0.10.7__tar.gz → 0.10.8__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 (31) hide show
  1. {jobselect-0.10.7 → jobselect-0.10.8}/JobSelect.egg-info/PKG-INFO +1 -1
  2. {jobselect-0.10.7 → jobselect-0.10.8}/PKG-INFO +1 -1
  3. {jobselect-0.10.7 → jobselect-0.10.8}/cli/jobselect.py +3 -3
  4. {jobselect-0.10.7 → jobselect-0.10.8}/pyproject.toml +1 -1
  5. {jobselect-0.10.7 → jobselect-0.10.8}/JobSelect.egg-info/SOURCES.txt +0 -0
  6. {jobselect-0.10.7 → jobselect-0.10.8}/JobSelect.egg-info/dependency_links.txt +0 -0
  7. {jobselect-0.10.7 → jobselect-0.10.8}/JobSelect.egg-info/entry_points.txt +0 -0
  8. {jobselect-0.10.7 → jobselect-0.10.8}/JobSelect.egg-info/requires.txt +0 -0
  9. {jobselect-0.10.7 → jobselect-0.10.8}/JobSelect.egg-info/top_level.txt +0 -0
  10. {jobselect-0.10.7 → jobselect-0.10.8}/LICENSE +0 -0
  11. {jobselect-0.10.7 → jobselect-0.10.8}/README.md +0 -0
  12. {jobselect-0.10.7 → jobselect-0.10.8}/cli/api_logic.py +0 -0
  13. {jobselect-0.10.7 → jobselect-0.10.8}/cli/api_val.py +0 -0
  14. {jobselect-0.10.7 → jobselect-0.10.8}/cli/model_select.py +0 -0
  15. {jobselect-0.10.7 → jobselect-0.10.8}/cli/test_cli.py +0 -0
  16. {jobselect-0.10.7 → jobselect-0.10.8}/cli/utils.py +0 -0
  17. {jobselect-0.10.7 → jobselect-0.10.8}/model/Model.py +0 -0
  18. {jobselect-0.10.7 → jobselect-0.10.8}/model/__init__.py +0 -0
  19. {jobselect-0.10.7 → jobselect-0.10.8}/model/eval.py +0 -0
  20. {jobselect-0.10.7 → jobselect-0.10.8}/model/pred.py +0 -0
  21. {jobselect-0.10.7 → jobselect-0.10.8}/model/prep/__init__.py +0 -0
  22. {jobselect-0.10.7 → jobselect-0.10.8}/model/prep/data_prep.py +0 -0
  23. {jobselect-0.10.7 → jobselect-0.10.8}/model/prep/label_vocab.json +0 -0
  24. {jobselect-0.10.7 → jobselect-0.10.8}/model/prep/prepared_data.npz +0 -0
  25. {jobselect-0.10.7 → jobselect-0.10.8}/model/prep/sym_map.py +0 -0
  26. {jobselect-0.10.7 → jobselect-0.10.8}/model/prep/test.py +0 -0
  27. {jobselect-0.10.7 → jobselect-0.10.8}/model/prep/vectorizer.pkl +0 -0
  28. {jobselect-0.10.7 → jobselect-0.10.8}/model_out/skill_classifier.pt +0 -0
  29. {jobselect-0.10.7 → jobselect-0.10.8}/model_out/training_history.json +0 -0
  30. {jobselect-0.10.7 → jobselect-0.10.8}/setup.cfg +0 -0
  31. {jobselect-0.10.7 → jobselect-0.10.8}/test/test_model.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: JobSelect
3
- Version: 0.10.7
3
+ Version: 0.10.8
4
4
  Summary: A CLI Based AI Skill Classifier for Job Descriptions Build by Akshay Babu
5
5
  Author-email: Akshay Babu <akshaysureshbabu100@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: JobSelect
3
- Version: 0.10.7
3
+ Version: 0.10.8
4
4
  Summary: A CLI Based AI Skill Classifier for Job Descriptions Build by Akshay Babu
5
5
  Author-email: Akshay Babu <akshaysureshbabu100@gmail.com>
6
6
  License-Expression: MIT
@@ -4,9 +4,9 @@ Run directly: python cli/test_cli.py
4
4
  """
5
5
  from rich import print
6
6
  from rich.console import Console
7
- from utils import clear_console, title, query
8
- from model_select import predict
9
- from api_val import val_api, infer_mode
7
+ from .utils import clear_console, title, query
8
+ from .model_select import predict
9
+ from .api_val import val_api, infer_mode
10
10
 
11
11
 
12
12
  def cli() -> None:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "JobSelect"
3
- version = "0.10.7"
3
+ version = "0.10.8"
4
4
  dependencies = [
5
5
  "rich==15.0.0",
6
6
  "pyfiglet==1.0.4",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes