support for training data fetched from DB
See original GitHub issueI like this idea, suggested by @3x14159265 of being able to load training data from a DB rather than a json file. Primarily because a DB is a more flexible & robust way to store that data, and not because of performance.
If possible, I don’t want rasa NLU to dictate what database people use to store their stuff. So maybe we can create an abstract TrainingDataLoader
class, from which everything else derives, including the ones which read json files. Then users can subclass that to read from whichever DB they like.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:3
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Fetch and display data from the database in OutSystems
It's time to load some data to the Screen. Go to Interface > UI Flows > Main Flow, and then right-click your Home...
Read more >Best Practices When Fetching Data from a Database - Anant
Let's look at how we can use different techniques for faster, more maintainable code! Ensure you are familiar with asynchronous execution before trying...
Read more >How to Fetch Data using API and SQL databases!
We are going to learn fetching data from an API and how you can use SQL databases to extract data and save it...
Read more >Fetch training data | Vertex AI | Google Cloud
Fetch feature values for model training For model training, you need a training data set that contains examples of your prediction task. These...
Read more >Different ways to fetch records from External Database
we can fetch the results from External Database by using below ways. 1. RDB-List method in activity- It is used to retrieve rows...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hey @tmbo Thanks for the insights!
I think in this case, we do something like introducing
AbstractDataLoader
which gets implemented for loading training data from file-system or mongo-db.AbstractPersistor
for persistance will include, aws, gcs, & mongo-db (no change in the current implementation except, introducing a mongo-db class).Can we find these updates and how to use them in the documentation?