-
Re: import sklearn model trained outside of Dataiku into Dataiku
Hi, So the proper way to do it is to create a Folder in your flow, and then upload your pickle file inside it. You can then, with the dataiku api, access the content of such folder and do joblib.load…1 · -
Re: pytorch & fast.ai
Hi, Indeed right now the DSS visual deep learning part only supports Keras and Tensorflow. If you want to use Pytorch/fastai, you can implement your deep net in a python recipe or notebook. Cheers, D…1 · -
Re: SQLExecutor2 exec_recipe_fragment multiple statements and
Hi, 1. You can define a list of temp table queries and put them in the `pre_queries` argument of `exec_recipe_fragment`. More information here: https://doc.dataiku.com/dss/latest/python-api/partial.h…1 · -
Re: Is it possible to extract the trained model object in dataiku and use it in python recipe?
Hi, Using the Dataiku API, you can retrieve the model and use it inside a python recipe. Something like this will work: import dataiku m = dataiku.Model(my_model_id) my_predictor = m.get_predictor() …1 · -
Cannot connect to Dataiku Interface with a virtual machine anymore
Hello, I have a problem with VM version. Indeed, I have Windows and I usually connect to Dataiku with a Vitual Machine (VMware) in the interface http://192.168.74.128:10000. However, today, I try to …1 ·