-
Turn a custom model in the flow into a model object
I was told that it was possible to turn a custom trained model, typically stored in a managed folder, into a visual model object in the flow. Currently our flow looks like this: but we would like to see something like this in the flow: I couldn’t find any documentation on how to do this, so I’m turning to the Dataiku…
-
Storing API keys securely
Dear Dataiku Team, Thank you for all your good work with Dataiku environment - we are looking forward to using new functionality with Dataiku 7! We are now experimenting with builidng API connections in between nodes - I was able to establish the connection using the code from here: import dataikuapihost =…
-
Env variable cannot be set
I'm trying to load a transformer model through the env Resources but it does not work as it does not set the variables I tried the following as a test: ********************************************************* {'value': 'This is a test', 'type': 'RAW_STRING'} ********************************************************* In the…
-
Filter by comparing two columns
I have a dataset with two columns, say A and B. I would like to only keep the rows where the content of A == content of B. In Pandas, this is expressed as: ```df = df[df['A'] == df['B']]``` Is this possible using Dataiku recipes? I tried with sample/filter recipe but could not figure out how to accomplish this. As a note,…
-
how can I make a Django app in Dataiku ?
I'm looking for information regarding coding a Django application in Dataiku. Any information on how to achieve this ? thanks
-
Custom trigger to run itself?
Hi everyone, I want to execute scenario again if its fail, so it can try 3 times, sometimes kubernetes fails or, spark fails could be fixed after run again so, i dont miss time range between fail and fix manually. This is the code created with LLM, it used python for that. I changed project name to variable "project name",…
-
Custom trigger does not executes python code
Hi, I am quite new in Dataiku and I am interested why the following code does not work as expected. Namely, I am trying to define custom trigger that will check if the folder is empty. Both from dataiku.scenario import Trigger t=Trigger() folder = dataiku.Folder("folder_id") files = folder.list_paths_in_partition() if…
-
schema propagation problem
In the dataset explore, I can define 'description' using 'edit column schema'. And I can propagate the schema to the following 'flow' using 'schema propagation'. However, sometimes it is not inherited (if there is a 'prepare recipe' in the middle) I want to know how to inherit it normally.
-
How to set up a random forest regression?
-
Ommiting quotes around scenario string variables in a Freemarker email template
Hi, I have a scheduled project scenario that sends an email on some condition. The scenario contains a step that sets scenario variables based on values in a dataset. Here's that step: import dataiku import dataiku.scenario # Read the dataset df = dataiku.Dataset("node-disk-usage").get_dataframe() use_percentage_threshold…