-
I can't dynamically select a notebook in a DSS macro + Using Python API to access notebooks fails
I’m trying to create a project macro in DSS 14.2.2 that allows a user to select a notebook from a dropdown and then perform actions on it (e.g., add a code block). Problems encountered: The dropdown appears in the macro UI, but it never shows any options. (I want all projects' notebooks). Attempting to use the Python API…
-
How to clean the Notebook Kernel's list ?
Hi everyone ! I'm working on cleaning up my Dataiku instance before a version upgrade. When I use notebooks, I have a very large number of available kernels, many of which are obsolete. Do you know where I can clean up this list? Thank you. Dataiku version used: 13.2.4
-
How to retrieve the test dataset used in the trained model With python?
Hello everyone, I am working on Dataiku, primarily using their API. I have trained my model and would like to retrieve the dataset that was used for testing via the API methods. Despite trying several methods, including get_train_info(), I am unable to obtain the test dataset. I don't want to export it; I just want to…
-
Support Plotly version 6 (and future ones) in the Jupyter Notebooks.
Plotly latest stable version in now 6.0.0. However, the release notes announced: Drop support for Jupyter Notebook version 6 and earlier [#4822]. The minimum supported version is now 7.0.0. and the current latest version of Dataiku uses a jupyter notebook with version 6.4.9-dku-13.4-0 This is an idea that might be already…
-
Confirmation pop-up when deleting a code sample
I deleted by mistake a code sample I had created because I clicked on the "trash basket icon" while I just wanted to close it. Indeed, the "trash basket icon" is in upper-right corner, which is generally the position of a "cross icon". So I think a confirmation pop-up of deletion would be good. Thanks
-
Predictions made using Dataiku Snowpark API Yield Single Class for Multi-Class Classification model
Hello community, I am facing an issue when using Dataiku's Snowpark API to make predictions from a multi-class classification model. The model is trained with Dataiku and a Snowflake table via Visual ML. The predictions only return one class, while the same table loaded as a pandas DataFrame returns correct predictions…
-
Problem with np.bool dependency in "dataiku" package in python
Hi, I'm having a problem importing the "dataiku" package in python in the following environments since update to 11.2 python 3.6 python 3.7 python 3.9 # Example: load a DSS dataset as a Pandas dataframemydataset = dataiku.Dataset("PWHRn6UM") import dataiku…
-
Hierarchical Models
For my current situation I am looking to set up hierarchical models to describe the data I have where it is a standard situation of having multiple observations per customer across multiple days where one can easily see that the behavior of each customer is more similar to their own than others and therefore wanting to…
-
How to enable auto-completion in Jupyter Notebook ?
Hello everybody, I would like to enable auto-completion in Jupyter Notebook ? Is it possible ? Thanks a lot for your answers.
-
Importing code from a plugin into python notebook
I'd like to import python functions from a (self-made) plugin into a python notebook. I've found this part in the User's Guide, but it's lacking examples and I can't get it to work: https://doc.dataiku.com/dss/latest/plugins/reference/other.html If I have a plugin with plugin id "xyz" and the following folder structure xyz…