dynamic-learning-model 3.3.1__tar.gz → 3.3.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dynamic-learning-model
3
- Version: 3.3.1
3
+ Version: 3.3.3
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
@@ -34,6 +34,8 @@ Dynamic: summary
34
34
  ![SQLite](https://img.shields.io/badge/SQLite-003B57?style=flat-square&logo=SQLite&logoColor=white)
35
35
  ![HuggingFace Transformers](https://img.shields.io/badge/-HuggingFace-3B4252?style=flat&logo=huggingface&logoColor=)
36
36
 
37
+ ![DLM Logo](https://ik.imagekit.io/cqhzoyggfm/DLM%20Logo.png?updatedAt=1759635222204)
38
+
37
39
  # Dynamic Learning Model
38
40
  **ABOUT**:
39
41
 
@@ -2,6 +2,8 @@
2
2
  ![SQLite](https://img.shields.io/badge/SQLite-003B57?style=flat-square&logo=SQLite&logoColor=white)
3
3
  ![HuggingFace Transformers](https://img.shields.io/badge/-HuggingFace-3B4252?style=flat&logo=huggingface&logoColor=)
4
4
 
5
+ ![DLM Logo](https://ik.imagekit.io/cqhzoyggfm/DLM%20Logo.png?updatedAt=1759635222204)
6
+
5
7
  # Dynamic Learning Model
6
8
  **ABOUT**:
7
9
 
@@ -74,7 +74,7 @@ def learn(self, expectation, category): # no return, void
74
74
  c = conn.cursor()
75
75
  c.execute(
76
76
  "INSERT OR IGNORE INTO knowledge_base (question, answer, category) VALUES (?, ?, ?)",
77
- (self.__special_stripped_query, expectation, category)
77
+ (self._DLM__special_stripped_query, expectation, category)
78
78
  )
79
79
  conn.commit()
80
80
  conn.close()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dynamic-learning-model
3
- Version: 3.3.1
3
+ Version: 3.3.3
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
@@ -34,6 +34,8 @@ Dynamic: summary
34
34
  ![SQLite](https://img.shields.io/badge/SQLite-003B57?style=flat-square&logo=SQLite&logoColor=white)
35
35
  ![HuggingFace Transformers](https://img.shields.io/badge/-HuggingFace-3B4252?style=flat&logo=huggingface&logoColor=)
36
36
 
37
+ ![DLM Logo](https://ik.imagekit.io/cqhzoyggfm/DLM%20Logo.png?updatedAt=1759635222204)
38
+
37
39
  # Dynamic Learning Model
38
40
  **ABOUT**:
39
41
 
@@ -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.1',
8
+ version='3.3.3',
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.',