-
Re: Issue calling deployed Dataiku model into Python code running in a container
Hello Sreekrishnan, This should be fixed starting from Dataiku 12.3 Best,1 · -
Re: Features design in visual analysis
Hi @tgb417 You're right in the sense that the notebook aims at being a standalone version of the model's preprocessing/training pipeline. It can be run outside of DSS, as long as the required package…1 · -
Re: Custom Code Metric
Hi @rmoore , This has been fixed in release 8.0.2 : More precisely, the custom metric function can now correctly assume a y_pred shape of (N, 2) in the case of binary classification with needs_proba …1 · -
Re: How to check if column value is in between of two other column values
Hi @Tsurapaneni If all columns are correctly parsed as Date, then you can * use the following formula in the formula step of your prepare recipe, to create a new column satisfying the condition: if(X…1 · -
Re: How do I reference a date value column in an if statement formula (e.g. if(date
Hi @dominic_bardele It is now possible to use comparison operators for dates: if(date_column.asDate("MM/dd/yyyy") < '2018-01-01'.asDate('yyyy-MM-dd'), 1, 0) Or if date_column is already …2 ·