dynamic-learning-model 3.3.5__tar.gz → 3.3.6.1__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.5 → dynamic_learning_model-3.3.6.1}/PKG-INFO +2 -2
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/dlm/DLM_Compute_Model.py +0 -2
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/dynamic_learning_model.egg-info/PKG-INFO +2 -2
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/setup.py +2 -2
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/LICENSE +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/README.md +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/dlm/DLM.py +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/dlm/DLM_Memory_Model.py +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/dlm/__init__.py +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/dynamic_learning_model.egg-info/SOURCES.txt +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/dynamic_learning_model.egg-info/dependency_links.txt +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/dynamic_learning_model.egg-info/requires.txt +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/dynamic_learning_model.egg-info/top_level.txt +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/pyproject.toml +0 -0
- {dynamic_learning_model-3.3.5 → dynamic_learning_model-3.3.6.1}/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.6.1
|
|
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
|
|
@@ -9,7 +9,7 @@ License: MIT
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
-
Requires-Python: >=3.12
|
|
12
|
+
Requires-Python: >=3.12,<3.13
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: nltk
|
|
@@ -158,8 +158,6 @@ def geometric_calculation(self, filtered_query, display_thought): # returns flo
|
|
|
158
158
|
if len(other_values) <= 1:
|
|
159
159
|
break
|
|
160
160
|
|
|
161
|
-
print(formula_inputs)
|
|
162
|
-
|
|
163
161
|
if "height" in params:
|
|
164
162
|
if formula_inputs["height"] is None and len(other_values) > 1:
|
|
165
163
|
formula_inputs["height"] = other_values[len(other_values) - 1]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dynamic-learning-model
|
|
3
|
-
Version: 3.3.
|
|
3
|
+
Version: 3.3.6.1
|
|
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
|
|
@@ -9,7 +9,7 @@ License: MIT
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
-
Requires-Python: >=3.12
|
|
12
|
+
Requires-Python: >=3.12,<3.13
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: nltk
|
|
@@ -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.6.1',
|
|
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.',
|
|
@@ -27,6 +27,6 @@ setup(
|
|
|
27
27
|
'Operating System :: OS Independent',
|
|
28
28
|
'License :: OSI Approved :: MIT License',
|
|
29
29
|
],
|
|
30
|
-
python_requires='>=3.12',
|
|
30
|
+
python_requires='>=3.12,<3.13',
|
|
31
31
|
license='MIT',
|
|
32
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
|
|
File without changes
|
|
File without changes
|