-
Generating a Dropdown in a Dataiku App Using the Python Do Function
Sometimes you want to dynamically generate a custom dropdown in your application. It could be using the values from a dataset column or using the six last month's values from today. You can actually …2 · -
Re: Precision Recall Curve/PR AUC model evaluation
Hi, No, but you can export as an ipython notebook your model with all the preprocessing steps (In a model, click on the button next to the deploy one) and then do it yourself in python ;) I'll put it…1 · -
Re: How to train a model without test set?
Hi @tanguy , This feature is available in the training recipe: Once the model is deployed in the flow, you can choose to retrain it using 100% of the training data !1 · -
Re: Get releases notification
Hi Bashayr, Major releases are publicly announced in our newsletters, once or twice a year: https://www.dataiku.com/company/newsletter/ For minor releases, you can check this download page or the rel…1 · -
Re: How to enable auto-completion in Jupyter Notebook ?
For anyone still struggling with tab autocomplete inside of Jupyter I add the following magic at the top of my notebook and it fixed the issue :%config Completer.use_jedi = False4 ·