dynamic-learning-model 1.1__tar.gz → 1.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dynamic-learning-model
3
- Version: 1.1
3
+ Version: 1.1.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
@@ -264,9 +264,9 @@ class DLM:
264
264
 
265
265
  Parameters:
266
266
  mode (str): The access mode. Options:
267
- 't' for Training mode,
268
- 'c' for Commercial mode,
269
- 'e' for Experimental mode.
267
+ 't' for Training mode (to train the bot with queries),
268
+ 'c' for Commercial mode (to use it in your deployment/production program),
269
+ 'e' for Experimental mode (for arithmetic or conversion queries).
270
270
  db_filename (str): The SQLite database file used to train and retrieve
271
271
  question-answer-category triples.
272
272
 
@@ -308,8 +308,6 @@ class DLM:
308
308
  if password.lower() == "stop":
309
309
  self.__mode = "commercial"
310
310
  print("\n")
311
- self.__loadingAnimation("Logging in as Commercial User", 0.6)
312
- print("\n")
313
311
  break
314
312
  if password == self.__trainingPwd:
315
313
  # trainers must understand these rules as DLM can generate bad responses if these instructions are neglected
@@ -337,12 +335,8 @@ class DLM:
337
335
  print("\n")
338
336
  elif mode.lower() == "c":
339
337
  self.__mode = "commercial"
340
- self.__loadingAnimation("Logging in as Commercial User", 0.6)
341
- print("Ask Non-Computational Queries (switch to experimental for computational queries)")
342
338
  else:
343
339
  self.__mode = "experimental"
344
- self.__loadingAnimation("Logging in as Experimental", 0.6)
345
- print("Ask Computational Problems (Arithmetics or Conversions)")
346
340
 
347
341
  def __create_table_if_missing(self): # no return, void
348
342
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dynamic-learning-model
3
- Version: 1.1
3
+ Version: 1.1.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
@@ -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='1.1',
8
+ version='1.1.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.',