gptmed 0.1.2__tar.gz → 0.3.0__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 (49) hide show
  1. {gptmed-0.1.2/gptmed.egg-info → gptmed-0.3.0}/PKG-INFO +2 -24
  2. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/__init__.py +1 -1
  3. {gptmed-0.1.2 → gptmed-0.3.0/gptmed.egg-info}/PKG-INFO +2 -24
  4. {gptmed-0.1.2 → gptmed-0.3.0}/pyproject.toml +2 -3
  5. {gptmed-0.1.2 → gptmed-0.3.0}/LICENSE +0 -0
  6. {gptmed-0.1.2 → gptmed-0.3.0}/MANIFEST.in +0 -0
  7. {gptmed-0.1.2 → gptmed-0.3.0}/README.md +0 -0
  8. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/api.py +0 -0
  9. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/configs/__init__.py +0 -0
  10. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/configs/config_loader.py +0 -0
  11. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/configs/train_config.py +0 -0
  12. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/configs/training_config.yaml +0 -0
  13. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/data/__init__.py +0 -0
  14. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/data/parsers/__init__.py +0 -0
  15. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/data/parsers/medquad_parser.py +0 -0
  16. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/data/parsers/text_formatter.py +0 -0
  17. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/inference/__init__.py +0 -0
  18. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/inference/decoding_utils.py +0 -0
  19. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/inference/generation_config.py +0 -0
  20. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/inference/generator.py +0 -0
  21. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/inference/sampling.py +0 -0
  22. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/model/__init__.py +0 -0
  23. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/model/architecture/__init__.py +0 -0
  24. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/model/architecture/attention.py +0 -0
  25. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/model/architecture/decoder_block.py +0 -0
  26. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/model/architecture/embeddings.py +0 -0
  27. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/model/architecture/feedforward.py +0 -0
  28. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/model/architecture/transformer.py +0 -0
  29. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/model/configs/__init__.py +0 -0
  30. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/model/configs/model_config.py +0 -0
  31. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/tokenizer/__init__.py +0 -0
  32. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/tokenizer/tokenize_data.py +0 -0
  33. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/tokenizer/train_tokenizer.py +0 -0
  34. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/training/__init__.py +0 -0
  35. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/training/dataset.py +0 -0
  36. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/training/train.py +0 -0
  37. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/training/trainer.py +0 -0
  38. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/training/utils.py +0 -0
  39. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/utils/__init__.py +0 -0
  40. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/utils/checkpoints.py +0 -0
  41. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed/utils/logging.py +0 -0
  42. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed.egg-info/SOURCES.txt +0 -0
  43. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed.egg-info/dependency_links.txt +0 -0
  44. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed.egg-info/entry_points.txt +0 -0
  45. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed.egg-info/requires.txt +0 -0
  46. {gptmed-0.1.2 → gptmed-0.3.0}/gptmed.egg-info/top_level.txt +0 -0
  47. {gptmed-0.1.2 → gptmed-0.3.0}/requirements.txt +0 -0
  48. {gptmed-0.1.2 → gptmed-0.3.0}/setup.cfg +0 -0
  49. {gptmed-0.1.2 → gptmed-0.3.0}/setup.py +0 -0
@@ -1,31 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gptmed
3
- Version: 0.1.2
3
+ Version: 0.3.0
4
4
  Summary: A lightweight GPT-based language model framework for training custom question-answering models on any domain
5
5
  Author-email: Sanjog Sigdel <sigdelsanjog@gmail.com>
6
6
  Maintainer-email: Sanjog Sigdel <sigdelsanjog@gmail.com>
7
- License: MIT License
8
-
9
- Copyright (c) 2026 Your Name
10
-
11
- Permission is hereby granted, free of charge, to any person obtaining a copy
12
- of this software and associated documentation files (the "Software"), to deal
13
- in the Software without restriction, including without limitation the rights
14
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
- copies of the Software, and to permit persons to whom the Software is
16
- furnished to do so, subject to the following conditions:
17
-
18
- The above copyright notice and this permission notice shall be included in all
19
- copies or substantial portions of the Software.
20
-
21
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
- SOFTWARE.
28
-
7
+ License-Expression: MIT
29
8
  Project-URL: Homepage, https://github.com/sigdelsanjog/gptmed
30
9
  Project-URL: Documentation, https://github.com/sigdelsanjog/gptmed#readme
31
10
  Project-URL: Repository, https://github.com/sigdelsanjog/gptmed
@@ -37,7 +16,6 @@ Classifier: Intended Audience :: Science/Research
37
16
  Classifier: Intended Audience :: Education
38
17
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
39
18
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
40
- Classifier: License :: OSI Approved :: MIT License
41
19
  Classifier: Programming Language :: Python :: 3
42
20
  Classifier: Programming Language :: Python :: 3.8
43
21
  Classifier: Programming Language :: Python :: 3.9
@@ -32,7 +32,7 @@ Advanced Usage:
32
32
  >>> model = GPTTransformer(config)
33
33
  """
34
34
 
35
- __version__ = "0.2.0"
35
+ __version__ = "0.3.0"
36
36
  __author__ = "Sanjog Sigdel"
37
37
  __email__ = "sigdelsanjog@gmail.com"
38
38
 
@@ -1,31 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gptmed
3
- Version: 0.1.2
3
+ Version: 0.3.0
4
4
  Summary: A lightweight GPT-based language model framework for training custom question-answering models on any domain
5
5
  Author-email: Sanjog Sigdel <sigdelsanjog@gmail.com>
6
6
  Maintainer-email: Sanjog Sigdel <sigdelsanjog@gmail.com>
7
- License: MIT License
8
-
9
- Copyright (c) 2026 Your Name
10
-
11
- Permission is hereby granted, free of charge, to any person obtaining a copy
12
- of this software and associated documentation files (the "Software"), to deal
13
- in the Software without restriction, including without limitation the rights
14
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
- copies of the Software, and to permit persons to whom the Software is
16
- furnished to do so, subject to the following conditions:
17
-
18
- The above copyright notice and this permission notice shall be included in all
19
- copies or substantial portions of the Software.
20
-
21
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
- SOFTWARE.
28
-
7
+ License-Expression: MIT
29
8
  Project-URL: Homepage, https://github.com/sigdelsanjog/gptmed
30
9
  Project-URL: Documentation, https://github.com/sigdelsanjog/gptmed#readme
31
10
  Project-URL: Repository, https://github.com/sigdelsanjog/gptmed
@@ -37,7 +16,6 @@ Classifier: Intended Audience :: Science/Research
37
16
  Classifier: Intended Audience :: Education
38
17
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
39
18
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
40
- Classifier: License :: OSI Approved :: MIT License
41
19
  Classifier: Programming Language :: Python :: 3
42
20
  Classifier: Programming Language :: Python :: 3.8
43
21
  Classifier: Programming Language :: Python :: 3.9
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "gptmed"
7
- version = "0.1.2"
7
+ version = "0.3.0"
8
8
  description = "A lightweight GPT-based language model framework for training custom question-answering models on any domain"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
11
- license = {file = "LICENSE"}
11
+ license = "MIT"
12
12
  authors = [
13
13
  {name = "Sanjog Sigdel", email = "sigdelsanjog@gmail.com"}
14
14
  ]
@@ -24,7 +24,6 @@ classifiers = [
24
24
  "Intended Audience :: Education",
25
25
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
26
26
  "Topic :: Software Development :: Libraries :: Python Modules",
27
- "License :: OSI Approved :: MIT License",
28
27
  "Programming Language :: Python :: 3",
29
28
  "Programming Language :: Python :: 3.8",
30
29
  "Programming Language :: Python :: 3.9",
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
File without changes
File without changes