How to handle incremental addition of new models?
See original GitHub issueHi, I’d like to incrementally add more models / architectures to my study like this:
list_of_models = ["LinReg", "some_new_model"]
model_type = trial.suggest_categorical("model_type", list_of_models)
However, when I try to append more models I get this error:
ValueError: CategoricalDistribution does not support dynamic value space.
Is there a good way to solve this issue?
Issue Analytics
- State:
- Created 3 years ago
- Comments:5
Top Results From Across the Web
Incremental models - dbt Developer Hub
Using an incremental model limits the amount of data that needs to be transformed, vastly reducing the runtime of your transformations. This ...
Read more >Keep improving your models with incremental learning
This can be achieved by re-training the models with the old and the new data. While the training dataset grows, the training time...
Read more >Incremental Models (Faisal El Shami) - YouTube
This recording is from the virtual Berlin dbt Meetup that took place on November 18th, 2021. (Co-hosted by TIER Mobility and dbt Labs)Title: ......
Read more >About Incremental Loading - ZAP Data Hub
Quick incremental loading may be useful for data models that require, say, hourly addition of new transactions, but where changes to existing transactions ......
Read more >The What, Why, When, and How of Incremental Loads
What is an incremental data load and why is it important? In this post, we review the merits of using incremental loads in...
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

How about using
suggest_intwith a dynamic range instead of usingsuggest_categorical?This issue was closed automatically because it had not seen any recent activity. If you want to discuss it, you can reopen it freely.