-
How to set the weighting strategy for a regression task , using API
Hi, I'm working on a regression task. I'm using the API to automate the model-building cycle. I want to use the "sample weights" weighting strategy and the "year" column as the weights. How do I achieve this using the API?
-
How to save a Jupyter notebook in html and upload it into a managed folder ?
Hello everyone, I am using Jupyter notebook to edit a Python recipe. Its output should be a folder that contains the Jupyter notebook in html format. # Output folderfolder = dataiku.Folder("Monitoring report")# Get notebookclient = dataiku.api_client()project_key = dataiku.default_project_key()project =…
-
How to select a column by using values of other columns
I want to select an existing column but the name of that column will be dynamic. Which means it should be dependent upon another columns' value. For example - Suppose I have a dataset like ID,Year,Month,Scen,09_2023,12_2023 1,2023,09,34.5,5,6 2,2023,09,56.2,1,3 3,2023,09,51.9,2,7 Now the new dataset would be combination of…
-
How to save a keras model from a python recipe in a folder ?
I would like to save a keras model in a folder. I can not figure out how to save the weights of my models because I do not find the correct filepath. The needed code to achieve this goal is : model.save_weights(filepath) Even with this syntax : path = str(trained_LSTM_info['accessInfo']['root'])…
-
Can i convert streaming python to dataiku plugin?
I dont see the "convert to plugin" option in streaming python recipie unlike the regular python recipie. Just wanted to confirm if we cant make a plugin of streaming python type.
-
Set up warning for failure in the scenario
Hello, I have a requirement to Monitor percentage of 0s in a dataset and put 3 weeks data in weekly email and to generate an alert in email notification when there are > 90% of 0s. How this can be done in dataiku? Thanks in advance
-
Extra columns created from nowhere
Hi all, When a run a flow certains of my dataset have extra columns created from i don't know where. Therefore it created warnings. Do you already experienced any kind of this issue ? And thank you all for your help Best regard, Jacques Operating system used: Windows
-
text data preprocessing using the available visual recipes
THERE ARE A RECIPE VISUAL TO DO Data Preprocessing with Visual Recipes in Dataiku for textuel data ?
-
Unterminated quoted field at the end of the file
After our recent update to Dataiku 12 our data has been behaving oddly in dataiku. We encountered this problem https://doc.dataiku.com/dss/12/troubleshooting/errors/ERR_DATASET_CSV_UNTERMINATED_QUOTE.html Before setting the quoting style to 'Unix' from 'Excel' (default) the job wouldn't finish at all. Now it finishes but I…
-
Saving an audio file to S3
Hi, I am trying to perform a Text-to-Speech conversion task, I am able to convert the text using the gTTS library in python, but when I am trying to save it to a S3 folder. I am getting an empty file. But saving it locally and playing in the notebook works. Let me know if there is a way to save audio files in S3. Thanks.…