dynamic-learning-model 1.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.
- dynamic_learning_model-1.0/LICENSE +21 -0
- dynamic_learning_model-1.0/PKG-INFO +55 -0
- dynamic_learning_model-1.0/README.md +25 -0
- dynamic_learning_model-1.0/dlm/DLM.py +1372 -0
- dynamic_learning_model-1.0/dlm/__init__.py +1 -0
- dynamic_learning_model-1.0/dynamic_learning_model.egg-info/PKG-INFO +55 -0
- dynamic_learning_model-1.0/dynamic_learning_model.egg-info/SOURCES.txt +11 -0
- dynamic_learning_model-1.0/dynamic_learning_model.egg-info/dependency_links.txt +1 -0
- dynamic_learning_model-1.0/dynamic_learning_model.egg-info/requires.txt +4 -0
- dynamic_learning_model-1.0/dynamic_learning_model.egg-info/top_level.txt +1 -0
- dynamic_learning_model-1.0/pyproject.toml +3 -0
- dynamic_learning_model-1.0/setup.cfg +4 -0
- dynamic_learning_model-1.0/setup.py +30 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Vignesh Thondikulam
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dynamic-learning-model
|
|
3
|
+
Version: 1.0
|
|
4
|
+
Summary: A Dynamic Learning Model for processing NLP queries using hybrid AI and reasoning.
|
|
5
|
+
Home-page: https://github.com/VigneshT24/Dynamic_Learning_Model
|
|
6
|
+
Author: Vignesh Thondikulam
|
|
7
|
+
Author-email: vignesh.tho2006@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Requires-Python: >=3.7
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: nltk
|
|
16
|
+
Requires-Dist: spacy
|
|
17
|
+
Requires-Dist: better_profanity
|
|
18
|
+
Requires-Dist: word2number
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: classifier
|
|
22
|
+
Dynamic: description
|
|
23
|
+
Dynamic: description-content-type
|
|
24
|
+
Dynamic: home-page
|
|
25
|
+
Dynamic: license
|
|
26
|
+
Dynamic: license-file
|
|
27
|
+
Dynamic: requires-dist
|
|
28
|
+
Dynamic: requires-python
|
|
29
|
+
Dynamic: summary
|
|
30
|
+
|
|
31
|
+

|
|
32
|
+

|
|
33
|
+
|
|
34
|
+
# Dynamic Learning Model
|
|
35
|
+
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 to improve over time as it interacts with users.
|
|
36
|
+
|
|
37
|
+
Key capabilities include:
|
|
38
|
+
|
|
39
|
+
* FAQ Handling: Learns and responds to frequently asked questions based on the knowledge it has been trained on.
|
|
40
|
+
|
|
41
|
+
* Chain-of-Thought (CoT) Reasoning: Performs clear, step by step logic to solve non-ambiguous arithmetic and unit conversion problems.
|
|
42
|
+
|
|
43
|
+
* Custom Knowledge Integration: DLM is fully extensible. You can initialize it with an empty SQL database and train it with your own domain-specific knowledge.
|
|
44
|
+
|
|
45
|
+
Whether you're building a student support bot, a domain-specific assistant, or an adaptive Q&A system, DLM offers a flexible foundation to power your intelligent applications
|
|
46
|
+
|
|
47
|
+
* This model uses SpaCy, SQLite, & NLTK for many of its functions
|
|
48
|
+
|
|
49
|
+
NOTICE: You'll need to install, import, and configure your device to "SpaCy", "NLTK", and possibly SQLite for this bot to be used in programs (only for developers)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+

|
|
53
|
+
|
|
54
|
+
|
|
55
|
+

|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+

|
|
2
|
+

|
|
3
|
+
|
|
4
|
+
# Dynamic Learning Model
|
|
5
|
+
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 to improve over time as it interacts with users.
|
|
6
|
+
|
|
7
|
+
Key capabilities include:
|
|
8
|
+
|
|
9
|
+
* FAQ Handling: Learns and responds to frequently asked questions based on the knowledge it has been trained on.
|
|
10
|
+
|
|
11
|
+
* Chain-of-Thought (CoT) Reasoning: Performs clear, step by step logic to solve non-ambiguous arithmetic and unit conversion problems.
|
|
12
|
+
|
|
13
|
+
* Custom Knowledge Integration: DLM is fully extensible. You can initialize it with an empty SQL database and train it with your own domain-specific knowledge.
|
|
14
|
+
|
|
15
|
+
Whether you're building a student support bot, a domain-specific assistant, or an adaptive Q&A system, DLM offers a flexible foundation to power your intelligent applications
|
|
16
|
+
|
|
17
|
+
* This model uses SpaCy, SQLite, & NLTK for many of its functions
|
|
18
|
+
|
|
19
|
+
NOTICE: You'll need to install, import, and configure your device to "SpaCy", "NLTK", and possibly SQLite for this bot to be used in programs (only for developers)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+

|
|
23
|
+
|
|
24
|
+
|
|
25
|
+

|