retraining DIET does not imply retraining TED?
See original GitHub issueI used the main branch, created a new project via rasa init
and ran rasa train
. After that I added some lookup
data to my nlu.yml
file. I then asked Rasa to train again.
> rasa train
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Starting to train component 'RegexFeaturizerGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Finished training component 'RegexFeaturizerGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Starting to train component 'LexicalSyntacticFeaturizerGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Finished training component 'LexicalSyntacticFeaturizerGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Starting to train component 'CountVectorsFeaturizerGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Finished training component 'CountVectorsFeaturizerGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Starting to train component 'CountVectorsFeaturizerGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Finished training component 'CountVectorsFeaturizerGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Starting to train component 'MemoizationPolicyGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Finished training component 'MemoizationPolicyGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Starting to train component 'RulePolicyGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Finished training component 'RulePolicyGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Starting to train component 'TEDPolicyGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Finished training component 'TEDPolicyGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Starting to train component 'UnexpecTEDIntentPolicyGraphComponent'.
2021-10-19 11:22:35 INFO rasa.engine.training.hooks - Finished training component 'UnexpecTEDIntentPolicyGraphComponent'.
2021-10-19 11:22:36 INFO rasa.engine.training.hooks - Starting to train component 'DIETClassifierGraphComponent'.
Epochs: 100%|ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ| 100/100 [00:19<00:00, 5.03it/s, t_loss=1.17, i_acc=1]
2021-10-19 11:22:56 INFO rasa.engine.training.hooks - Finished training component 'DIETClassifierGraphComponent'.
2021-10-19 11:22:56 INFO rasa.engine.training.hooks - Starting to train component 'EntitySynonymMapperGraphComponent'.
2021-10-19 11:22:56 INFO rasa.engine.training.hooks - Finished training component 'EntitySynonymMapperGraphComponent'.
2021-10-19 11:22:56 INFO rasa.engine.training.hooks - Starting to train component 'ResponseSelectorGraphComponent'.
2021-10-19 11:22:56 INFO rasa.nlu.selectors.response_selector - Retrieval intent parameter was left to its default value. This response selector will be trained on training examples combining all retrieval intents.
2021-10-19 11:22:56 INFO rasa.engine.training.hooks - Finished training component 'ResponseSelectorGraphComponent'.
Your Rasa model is trained and saved at 'models/20211019-112234.tar.gz'.`
A few things are strange about this.
- Technically, the DIETClassifier doesnβt need to retrain when thereβs new lookup values, right? The training data technically did not change.
- More strangely, it seems like the DIETClassifier updated. So why didnβt the Policy models retrain? With a new NLU model surely we need a new TEDPolicy?
Iβm assuming TED isnβt retraining because thereβs no progress bar. Is this accurate in 3.x?
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
How to change your relationship with food β and stop eating ...
Now try doing this: Eat only when you're hungry; stop when you're full. βIt may seem obvious to you,β concedes Lahijani. Still, think...
Read more >How to Retrain Your Palate to Be Healthier | One Medical
Try new, healthy foods several times and season them with flavors you like. Research shows pairing foods with familiar flavors repeatedly canΒ ...
Read more >Brain Retraining Help β E D I - Eating Disorder Institute
I picked up this book on the basis of her TEDTalk and I was not disappointed. As so many working through recovery from...
Read more >LTCFS Instructions Module 5: Activities of Daily Living (ADLs ...
While these results are not verification of diagnosis of memory loss, they are acceptable evidence of memory loss and the screener may selectΒ ......
Read more >How to Retrain Your Taste Buds for a Healthier Diet | U.S. News
This doesn't mean you have to quit what you love cold turkey. It simply means you're diversifying and developing a taste for more...
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
Thanks for testing it at this early stage @koaning ππ»
This is true. To fix this weβd need to separate the lookup tables from the
TrainingData
object which we considered out of scope of the revamp as this has larger implications π¬