dynamic-learning-model 4.0.1__tar.gz → 4.0.2__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.
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/PKG-INFO +9 -16
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/README.md +7 -9
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/dynamic_learning_model.egg-info/PKG-INFO +9 -16
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/dynamic_learning_model.egg-info/SOURCES.txt +0 -1
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/pyproject.toml +1 -1
- dynamic_learning_model-4.0.1/setup.py +0 -32
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/LICENSE +0 -0
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/dlm/DLM.py +0 -0
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/dlm/DLM_Compute_Model.py +0 -0
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/dlm/DLM_Memory_Model.py +0 -0
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/dlm/__init__.py +0 -0
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/dynamic_learning_model.egg-info/dependency_links.txt +0 -0
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/dynamic_learning_model.egg-info/requires.txt +0 -0
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/dynamic_learning_model.egg-info/top_level.txt +0 -0
- {dynamic_learning_model-4.0.1 → dynamic_learning_model-4.0.2}/setup.cfg +0 -0
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dynamic-learning-model
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.2
|
|
4
4
|
Summary: A Dynamic-Learning Model (DLM) chatbot with memory and compute reasoning modes.
|
|
5
|
-
Home-page: https://github.com/VigneshT24/Dynamic_Learning_Model
|
|
6
|
-
Author: Vignesh Thondikulam
|
|
7
5
|
Author-email: Vignesh Thondikulam <vignesh.tho2006@gmail.com>
|
|
8
6
|
License: MIT
|
|
9
7
|
Project-URL: Homepage, https://github.com/VigneshT24/Dynamic_Learning_Model
|
|
10
8
|
Project-URL: Repository, https://github.com/VigneshT24/Dynamic_Learning_Model
|
|
11
|
-
Requires-Python: >=3.12
|
|
9
|
+
Requires-Python: >=3.12
|
|
12
10
|
Description-Content-Type: text/markdown
|
|
13
11
|
License-File: LICENSE
|
|
14
12
|
Requires-Dist: spacy>=3.7
|
|
@@ -16,19 +14,14 @@ Requires-Dist: transformers>=4.30
|
|
|
16
14
|
Requires-Dist: torch>=2.0
|
|
17
15
|
Requires-Dist: better-profanity>=0.7
|
|
18
16
|
Requires-Dist: nltk>=3.8
|
|
19
|
-
Dynamic: author
|
|
20
|
-
Dynamic: home-page
|
|
21
17
|
Dynamic: license-file
|
|
22
|
-
Dynamic: requires-python
|
|
23
18
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# Dynamic Learning Model
|
|
31
|
-
**ABOUT**:
|
|
19
|
+
<table>
|
|
20
|
+
<tr>
|
|
21
|
+
<td><img src="https://ik.imagekit.io/cqhzoyggfm/DLM%20Logo.png?updatedAt=1759635222204" width="90"></td>
|
|
22
|
+
<td><h1>Dynamic Learning Model</h1></td>
|
|
23
|
+
</tr>
|
|
24
|
+
</table>
|
|
32
25
|
|
|
33
26
|
The Dynamic Learning Model (DLM) is a hybrid AI system designed to learn, adapt, and intelligently respond to user queries. It combines natural language understanding with structured reasoning, continually improving as it is trained.
|
|
34
27
|
|
|
@@ -57,7 +50,7 @@ Whether you're building a student support bot, a domain-specific assistant, or a
|
|
|
57
50
|
```bash
|
|
58
51
|
pip install dynamic-learning-model
|
|
59
52
|
```
|
|
60
|
-
* ***Python 3.12.0 is required to use this bot in your program.***
|
|
53
|
+
* ***Python 3.12.0 or higher is required to use this bot in your program.***
|
|
61
54
|
|
|
62
55
|
('learn' mode [training queries])
|
|
63
56
|
```python
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
# Dynamic Learning Model
|
|
8
|
-
**ABOUT**:
|
|
1
|
+
<table>
|
|
2
|
+
<tr>
|
|
3
|
+
<td><img src="https://ik.imagekit.io/cqhzoyggfm/DLM%20Logo.png?updatedAt=1759635222204" width="90"></td>
|
|
4
|
+
<td><h1>Dynamic Learning Model</h1></td>
|
|
5
|
+
</tr>
|
|
6
|
+
</table>
|
|
9
7
|
|
|
10
8
|
The Dynamic Learning Model (DLM) is a hybrid AI system designed to learn, adapt, and intelligently respond to user queries. It combines natural language understanding with structured reasoning, continually improving as it is trained.
|
|
11
9
|
|
|
@@ -34,7 +32,7 @@ Whether you're building a student support bot, a domain-specific assistant, or a
|
|
|
34
32
|
```bash
|
|
35
33
|
pip install dynamic-learning-model
|
|
36
34
|
```
|
|
37
|
-
* ***Python 3.12.0 is required to use this bot in your program.***
|
|
35
|
+
* ***Python 3.12.0 or higher is required to use this bot in your program.***
|
|
38
36
|
|
|
39
37
|
('learn' mode [training queries])
|
|
40
38
|
```python
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dynamic-learning-model
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.2
|
|
4
4
|
Summary: A Dynamic-Learning Model (DLM) chatbot with memory and compute reasoning modes.
|
|
5
|
-
Home-page: https://github.com/VigneshT24/Dynamic_Learning_Model
|
|
6
|
-
Author: Vignesh Thondikulam
|
|
7
5
|
Author-email: Vignesh Thondikulam <vignesh.tho2006@gmail.com>
|
|
8
6
|
License: MIT
|
|
9
7
|
Project-URL: Homepage, https://github.com/VigneshT24/Dynamic_Learning_Model
|
|
10
8
|
Project-URL: Repository, https://github.com/VigneshT24/Dynamic_Learning_Model
|
|
11
|
-
Requires-Python: >=3.12
|
|
9
|
+
Requires-Python: >=3.12
|
|
12
10
|
Description-Content-Type: text/markdown
|
|
13
11
|
License-File: LICENSE
|
|
14
12
|
Requires-Dist: spacy>=3.7
|
|
@@ -16,19 +14,14 @@ Requires-Dist: transformers>=4.30
|
|
|
16
14
|
Requires-Dist: torch>=2.0
|
|
17
15
|
Requires-Dist: better-profanity>=0.7
|
|
18
16
|
Requires-Dist: nltk>=3.8
|
|
19
|
-
Dynamic: author
|
|
20
|
-
Dynamic: home-page
|
|
21
17
|
Dynamic: license-file
|
|
22
|
-
Dynamic: requires-python
|
|
23
18
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# Dynamic Learning Model
|
|
31
|
-
**ABOUT**:
|
|
19
|
+
<table>
|
|
20
|
+
<tr>
|
|
21
|
+
<td><img src="https://ik.imagekit.io/cqhzoyggfm/DLM%20Logo.png?updatedAt=1759635222204" width="90"></td>
|
|
22
|
+
<td><h1>Dynamic Learning Model</h1></td>
|
|
23
|
+
</tr>
|
|
24
|
+
</table>
|
|
32
25
|
|
|
33
26
|
The Dynamic Learning Model (DLM) is a hybrid AI system designed to learn, adapt, and intelligently respond to user queries. It combines natural language understanding with structured reasoning, continually improving as it is trained.
|
|
34
27
|
|
|
@@ -57,7 +50,7 @@ Whether you're building a student support bot, a domain-specific assistant, or a
|
|
|
57
50
|
```bash
|
|
58
51
|
pip install dynamic-learning-model
|
|
59
52
|
```
|
|
60
|
-
* ***Python 3.12.0 is required to use this bot in your program.***
|
|
53
|
+
* ***Python 3.12.0 or higher is required to use this bot in your program.***
|
|
61
54
|
|
|
62
55
|
('learn' mode [training queries])
|
|
63
56
|
```python
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "dynamic-learning-model"
|
|
7
|
-
version = "4.0.
|
|
7
|
+
version = "4.0.2"
|
|
8
8
|
description = "A Dynamic-Learning Model (DLM) chatbot with memory and compute reasoning modes."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.12"
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
2
|
-
|
|
3
|
-
with open('README.md', 'r', encoding='utf-8') as f:
|
|
4
|
-
long_description = f.read()
|
|
5
|
-
|
|
6
|
-
setup(
|
|
7
|
-
name='dynamic-learning-model',
|
|
8
|
-
version='3.5.2',
|
|
9
|
-
author='Vignesh Thondikulam',
|
|
10
|
-
author_email='vignesh.tho2006@gmail.com',
|
|
11
|
-
description='A Dynamic Learning Model for processing NLP queries using hybrid AI and reasoning.',
|
|
12
|
-
long_description=long_description,
|
|
13
|
-
long_description_content_type='text/markdown',
|
|
14
|
-
url='https://github.com/VigneshT24/Dynamic_Learning_Model',
|
|
15
|
-
packages=find_packages(),
|
|
16
|
-
include_package_data=True,
|
|
17
|
-
install_requires=[
|
|
18
|
-
'nltk',
|
|
19
|
-
'spacy',
|
|
20
|
-
'better_profanity',
|
|
21
|
-
'word2number',
|
|
22
|
-
'transformers',
|
|
23
|
-
'hf_xet'
|
|
24
|
-
],
|
|
25
|
-
classifiers=[
|
|
26
|
-
'Programming Language :: Python :: 3',
|
|
27
|
-
'Operating System :: OS Independent',
|
|
28
|
-
'License :: OSI Approved :: MIT License',
|
|
29
|
-
],
|
|
30
|
-
python_requires='>=3.12,<3.13',
|
|
31
|
-
license='MIT',
|
|
32
|
-
)
|
|
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
|