-
Re: Train Model Error - com.dataiku.dip.io.SocketBlockLink$SecretKernelTimeoutException
A bit above in the logs, you have a "Missing required dependencies ['numpy']", which means that the DSS builtin python environment has an issue. Possibly a package has been instal…1 · -
Re: Can I delete $DATADIR/tmp
Hi, When DSS is stopped, you can delete the content of $DATADIR/tmp, but not delete the directory itself. Regards1 · -
Re: How do I import python code in recipes?
See the documentation on the Python Environment, you can add .py files in DATA_DIR/lib/python. You can also look into plugins, to develop a custom recipe that has the same name, within the same plugi…1 · -
Re: Where can I find which version of DSS I have installed (enterprise edition)?
Click the question mark in the top-right corner, then go to the bottom: About.3 · -
Re: DSS formula language - exponential functions
Hello, * The current DSS version has exp(number) * Square can be done using pow(number, 2) or number * number * Square root can be done using pow(number, 0.5) Regards2 ·