-
Re: Model deploy
Hi, If your model is already trained and saved as a pickle file, the quickest option would be to use a python prediction endpoint. To do so, you need to add a managed folder to your flow, with your .…3 · -
Re: API call for Scenarios
Hi, Indeed you can use the python API to do so. Keep in mind that code environments can be used in various parts of a scenario independently: a python step (if the scenario is step-based), the script…1 · -
Re: exporting dataset from Dataiku to Excel changes the cells format from Text to Number
Hi, This issue seems to be related to the way Excel imports files. I tested on my side on a column with ids and leading 0s, and 0s are preserved at export. However, excel auto-converts such columns t…1 · -
Re: save pickle in managed folder
Hi, You can use the folder api to get a writer: with dataiku.Folder(FOLDER_ID).get_writer(MODEL_PATH_IN_FOLDER) as writer: writeable = pickle.dumps(MODEL) writer.write(writeable)1 · -
Re: Can we transform visual recipe to code?
Hi, There is no option to export code generated by a visual recipe, except is you are using the SQL engine for this recipe. In this case, you will be able to view the query that DSS generates, and ev…1 ·