-
Re: Export model from dataiku jupyter to my local machine
Hello @CY , I have no idea why this is not working, but you can try the following: folder = dataiku.Folder(FOLDER_ID)with folder.get_writer(FILE_NAME) as w: w.write("some data") Hope this h…1 · -
Re: SHAP (Shapley values) in Dataiku
Hello @jxh , - Sub chunk size is used to reduce the memory footprint of the algorithms. If you increase it, it would be faster but you could run out of memory. - The higher the number of Monte Carlo …1 · -
Re: SHAP (Shapley values) in Dataiku
Hello @jxh , Be aware that Dataiku DSS doesn't use the package SHAP, but its own homemade algorithm to compute the Shapley values. This means you cannot output directly the summary plot you are …2 · -
Re: 'DSSClient' object has no attribute 'predict_record'
Hello @shajay12 , As your are requesting an API Node, you need to use an APINodeClient instead of a DSSClient: client = dataikuapi.APINodeClient(uri, service_id, api_key) See https://doc.dataiku.com/…1 · -
Re: Interpretation of Shapley values in Dataiku
Hello @noureini , Thank you for sharing this project. After looking at this project, I managed to have the constant "diff" you are talking about by changing the log10 to ln in the prepare r…1 ·