dynamic-learning-model 3.3.4__tar.gz → 3.3.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.
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/PKG-INFO +3 -4
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/README.md +2 -3
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/dynamic_learning_model.egg-info/PKG-INFO +3 -4
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/setup.py +1 -1
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/LICENSE +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/dlm/DLM.py +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/dlm/DLM_Compute_Model.py +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/dlm/DLM_Memory_Model.py +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/dlm/__init__.py +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/dynamic_learning_model.egg-info/SOURCES.txt +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/dynamic_learning_model.egg-info/dependency_links.txt +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/dynamic_learning_model.egg-info/requires.txt +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/dynamic_learning_model.egg-info/top_level.txt +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/pyproject.toml +0 -0
- {dynamic_learning_model-3.3.4 → dynamic_learning_model-3.3.5}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dynamic-learning-model
|
|
3
|
-
Version: 3.3.
|
|
3
|
+
Version: 3.3.5
|
|
4
4
|
Summary: A Dynamic Learning Model for processing NLP queries using hybrid AI and reasoning.
|
|
5
5
|
Home-page: https://github.com/VigneshT24/Dynamic_Learning_Model
|
|
6
6
|
Author: Vignesh Thondikulam
|
|
@@ -54,7 +54,7 @@ Whether you're building a student support bot, a domain-specific assistant, or a
|
|
|
54
54
|
**REQUIRED PARAMETERS**:
|
|
55
55
|
* The constructor requires passing in two parameters:
|
|
56
56
|
- Bot Mode:
|
|
57
|
-
- 'learn' = Enables training using the memory model. The bot can be updated with new information
|
|
57
|
+
- 'learn' = Enables training using the memory model. The bot can be updated with new information
|
|
58
58
|
- 'apply' = The bot automatically switches between its "compute" and "memory" model depending on the query asked
|
|
59
59
|
- Empty SQL Database for training the bot with queries and for the memory model
|
|
60
60
|
* The ask() method also requires passing in two parameters:
|
|
@@ -66,10 +66,9 @@ Whether you're building a student support bot, a domain-specific assistant, or a
|
|
|
66
66
|
```bash
|
|
67
67
|
pip install dynamic-learning-model
|
|
68
68
|
```
|
|
69
|
-
* ***Python 3.12
|
|
69
|
+
* ***Python 3.12.0 is required to use this bot in your program.***
|
|
70
70
|
|
|
71
71
|
('learn' mode [training queries])
|
|
72
|
-
* You can find the training password in the ```__trainingPwd``` variable defined within the DLM.py file
|
|
73
72
|
```python
|
|
74
73
|
from dlm import DLM
|
|
75
74
|
|
|
@@ -22,7 +22,7 @@ Whether you're building a student support bot, a domain-specific assistant, or a
|
|
|
22
22
|
**REQUIRED PARAMETERS**:
|
|
23
23
|
* The constructor requires passing in two parameters:
|
|
24
24
|
- Bot Mode:
|
|
25
|
-
- 'learn' = Enables training using the memory model. The bot can be updated with new information
|
|
25
|
+
- 'learn' = Enables training using the memory model. The bot can be updated with new information
|
|
26
26
|
- 'apply' = The bot automatically switches between its "compute" and "memory" model depending on the query asked
|
|
27
27
|
- Empty SQL Database for training the bot with queries and for the memory model
|
|
28
28
|
* The ask() method also requires passing in two parameters:
|
|
@@ -34,10 +34,9 @@ Whether you're building a student support bot, a domain-specific assistant, or a
|
|
|
34
34
|
```bash
|
|
35
35
|
pip install dynamic-learning-model
|
|
36
36
|
```
|
|
37
|
-
* ***Python 3.12
|
|
37
|
+
* ***Python 3.12.0 is required to use this bot in your program.***
|
|
38
38
|
|
|
39
39
|
('learn' mode [training queries])
|
|
40
|
-
* You can find the training password in the ```__trainingPwd``` variable defined within the DLM.py file
|
|
41
40
|
```python
|
|
42
41
|
from dlm import DLM
|
|
43
42
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dynamic-learning-model
|
|
3
|
-
Version: 3.3.
|
|
3
|
+
Version: 3.3.5
|
|
4
4
|
Summary: A Dynamic Learning Model for processing NLP queries using hybrid AI and reasoning.
|
|
5
5
|
Home-page: https://github.com/VigneshT24/Dynamic_Learning_Model
|
|
6
6
|
Author: Vignesh Thondikulam
|
|
@@ -54,7 +54,7 @@ Whether you're building a student support bot, a domain-specific assistant, or a
|
|
|
54
54
|
**REQUIRED PARAMETERS**:
|
|
55
55
|
* The constructor requires passing in two parameters:
|
|
56
56
|
- Bot Mode:
|
|
57
|
-
- 'learn' = Enables training using the memory model. The bot can be updated with new information
|
|
57
|
+
- 'learn' = Enables training using the memory model. The bot can be updated with new information
|
|
58
58
|
- 'apply' = The bot automatically switches between its "compute" and "memory" model depending on the query asked
|
|
59
59
|
- Empty SQL Database for training the bot with queries and for the memory model
|
|
60
60
|
* The ask() method also requires passing in two parameters:
|
|
@@ -66,10 +66,9 @@ Whether you're building a student support bot, a domain-specific assistant, or a
|
|
|
66
66
|
```bash
|
|
67
67
|
pip install dynamic-learning-model
|
|
68
68
|
```
|
|
69
|
-
* ***Python 3.12
|
|
69
|
+
* ***Python 3.12.0 is required to use this bot in your program.***
|
|
70
70
|
|
|
71
71
|
('learn' mode [training queries])
|
|
72
|
-
* You can find the training password in the ```__trainingPwd``` variable defined within the DLM.py file
|
|
73
72
|
```python
|
|
74
73
|
from dlm import DLM
|
|
75
74
|
|
|
@@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name='dynamic-learning-model',
|
|
8
|
-
version='3.3.
|
|
8
|
+
version='3.3.5',
|
|
9
9
|
author='Vignesh Thondikulam',
|
|
10
10
|
author_email='vignesh.tho2006@gmail.com',
|
|
11
11
|
description='A Dynamic Learning Model for processing NLP queries using hybrid AI and reasoning.',
|
|
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
|