-
<class 'json.decoder.JSONDecodeError'> when evaluating a deployed Random Forest model
How to replicate: Using windows10, download the latest Dataiku DSS on-premise version (13.2.3). Create a New project, upload any dataset with a "target" column having binary value. Click the dataset - Lab - AutoML Prediction - Quick Prototype - Train a Random Forest model on "target", using default settings. Deploy the…
-
Recipe failed but notebook runs (same code environment)
My recipe failed to resolve a pip package I installed on code env. The same code runs well on Notebook area but failed on recipe using the same code env. I suspect the recipe uses old version of the code env but I have no way of forcing it to use the latest code env build. How? Operating system used: Windows Operating…
-
Replace headers with other row in table imported from Google Sheet
Hi, I have imported a table from a Google Sheet using Dataiku's Google Sheet plugin. What I would like to do now is set the third row (with 'horodate' at the far left) as the headers row, and delete all rows above the third line. 1. How can I achieve this using one of Dataiku's built-in recipes? 2. Is there a way to do so…
-
'ascii' codec can't encode character u'\x82' in position 42: ordinal not in range(128)
HTTP code: 500, type: UnicodeEncodeError I get this error when launching a prediction model.
-
is there a way to easily locate charts ?
If not, may I suggest to add to the Project summary ?
-
Connection path for Dataset ${projectKey}
Hi all, Is there a way to change for all datasets of a project the "connection path" of datasets to ${projectKey} ? I saw that during project exports, some options desactivate the ${projectKey} of Datasets to the key of the project exported. There is a way to change it manually for one dataset, but i am looking for the way…
-
Qliksense API Calls to Dataiku Engine via Python
Hi, I'm curious if there is documentation around using qliksense to utilize the Dataiku engine. We will use Qlik SSE - server side extensions - to interact with Dataiku via the python API. Ultimately, this lets us do real time parameterized data trafficking. I am trying to document and figure this process out.Thanks!
-
job status page bug
To reproduce this front-end bug, in the Job page, the job status filter disabled when new job notification popup on the right bottom of the screen. I am on Version 5.1.2.
-
kernel error when starting a python notebook
Hi, I installed DSS on a GCP VM when I start a Python jupyter notebook, I get the following kernel error. Any Ideas Regards, Longhow Traceback (most recent call last): File "/home/longhowlam/dataiku-dss-6.0.2/python.packages/tornado/web.py", line 1592, in _execute result = yield result File…
-
Multiple outputs in a single Python recipe are only writing data from the first dataset
I am trying to wirte multiple outputs out of a single Python recipe, as such: # Write recipe outputs user_exclusions_df = dataiku.Dataset("user_exclusions") user_exclusions_df.write_schema_from_dataframe(excluded) user_exclusions_df.write_from_dataframe(excluded) #user_exclusions_df.write_with_schema(excluded)…