A Dynamic Learning Model for processing NLP queries using hybrid AI and reasoning.
Project description
Dynamic Learning Model
ABOUT:
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, continually improving as it is trained.
Key capabilities include:
-
FAQ Handling: Learns and responds to frequently asked questions based on the knowledge it has been trained on.
-
Chain-of-Thought (CoT) Reasoning: Performs clear, step-by-step logic to solve non-ambiguous arithmetic, geometric, and unit conversion problems.
-
Custom Knowledge Integration: DLM is fully extensible. You can initialize it with an empty SQL database and train it with your domain-specific knowledge.
Whether you're building a student support bot, a domain-specific assistant, or a computation system, DLM offers a flexible foundation to power your intelligent applications
REQUIRED PARAMETERS:
- The constructor requires passing in two parameters:
- Bot Mode:
- 'learn' = Enables training using the memory model. The bot can be updated with new information,
- 'recall' = The bot uses the memory model in read-only mode (no training),
- 'compute' = Activates the computation model for processing and solving queries algorithmically (no training)
- Empty SQL Database for training the bot with queries and for the memory model
- Bot Mode:
- The ask() method also requires passing in two parameters:
- Query: "What is the definition of FAFSA" (as an example)
- Display Thought: "True" to allow the bot's Chain of Thought to be displayed, or else "False"
GET STARTED:
- To install, run:
pip install dynamic-learning-model
- Python 3.12 or higher is required to use this bot in your program
('learn' mode [training queries])
- You can find the training password in the
__trainingPwdvariable defined within the DLM.py file
from dlm import DLM
training_bot = DLM("learn", "college_knowledge.db")
training_bot.ask("What is FAFSA in college?", True)
('recall' mode [deployment/production use after training])
from dlm import DLM
commercial_bot = DLM("recall", "college_knowledge.db")
commercial_bot.ask("What is the difference between FAFSA and CADAA in California?", False)
('compute' mode [computation queries])
from dlm import DLM
computation_bot = DLM("compute", "college_knowledge.db")
computation_bot.ask("Tell me the result for the following: 5 * 5 * 5 + 5 / 5", True)
HIGH-LEVEL PIPELINE VISUAL:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dynamic_learning_model-2.1.tar.gz.
File metadata
- Download URL: dynamic_learning_model-2.1.tar.gz
- Upload date:
- Size: 27.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6273017bec6248154ce244a6d2cb675c46fa8bcdffc7f1bc0e2685124d276de9
|
|
| MD5 |
179567af2074e2320df1ea7d5b454f8f
|
|
| BLAKE2b-256 |
4516d5563acfa22e4c193eede628737668b18f9a8e4f14d6459d2b6b95b1e18c
|
File details
Details for the file dynamic_learning_model-2.1-py3-none-any.whl.
File metadata
- Download URL: dynamic_learning_model-2.1-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee596f6b128e28b0ae069f620f1456959e2ef10dd7f565ca0dbb95a2b511e2ec
|
|
| MD5 |
a6445433067f36554f2cfe2972cc3123
|
|
| BLAKE2b-256 |
7f5dbc600a4e5243db94d50cfa1be59e723bf7d6e9242b8a66a716ec439e2470
|