-
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…
-
How to get the list of items of default zone using python?
This is my code and 'Data Pool' is my default zone and it has more hen 10 tables but it is not fetching the list of items for default zone. however it is working for other zones but not for this default zone. Operating system used: Windows Operating system used: Windows
-
Data download
Is there a way to download updated dataset if queried via “Explore” option and having filter applied on through “Sample Settings”., usually it downloads entire dataset as is and not the one generated after applying filter.
-
Beginner Help: Deploying an API Service with Pickle Model from Jupyter Notebook in Dataiku
Hello Dear Community, I am a complete beginner in Dataiku and have created a Jupyter Notebook as a mini test model. I used Pickle to save the model and vectorizer into a managed folder named "Models". My goal is to make this model available as an API service, but I’m struggling with the process and would greatly appreciate…
-
How to send an email from a plugin scenario step using the Python API (Messaging Channels)?
Hi everyone, I’m building a custom scenario step plugin in DSS 12.2. The step collects scenario information from multiple projects, generates an HTML report, and saves it as a project variable. Now, I would like the same plugin step to send this HTML report as an email using an existing Messaging Channel (configured in DSS…
-
How can I access Dataiku Inbox using Dataiku Python API
I want to access the Dataiku Inbox to see who raised access requests using Dataiku Python API. Can you help me how to do that? I want to approve requests in an automated way using Python.
-
ERROR message : Conflicting scenario when updating project bundle
Hi, I am using the local deployer to deploy project on automation node. The first deployment goes well, on the other hand when I try to do an update and deploy a second version i get this error message : Automation node http://xxxxxxxx:xxxx returned an error when trying to activate bundle v1_prod on project xxxxxxx:…
-
Using SQLExecutor2 inside shared library
Hi, I would like to execute some raw sql queries like insert the rows directly into the oracle database. Based on the various community discussions, I chose to use SQLExecutor2. My code is as below: from dataiku import SQLExecutor2 import dataiku def test(): # get the needed data to prepare the query # for example, load…
-
regex that will remove everything between begin: and end:
Hi I've got dataset with regex patterns in one column and python code that uses it to make replacement. I need regex pattern that will remove everything between "begin:" and "end:" Tried to use "begin:[\s\S]*?end: " but it doesn't work. in between I can have more then 3000 chars including special ones. Thank you Ela…
-
how to add calculated filters in Charts ?
I want to embed calculated filters (if x >1 set display color to blue, if x > 1.15 set color to yellow etc…) in a chart. Let's say Bar chart for example. I know how to add static filters but is there a way to add filter based on a calculation. here in this chart , each color is a parameter. I want to change parameter color…