-
Re: Deep Learning Time Series
Hi, The error says that for this multiclass classification problem, output of Deep Learning Architecture must have a dimension equal to 224 (number of classes). And in your code it is currently: 1 I …1 · -
Re: how to truncate timestamp in now() in formula langugae
Hi, You can use now().toString('yyyy-MM-dd') to keep only the date part. The results are always in local timezone in Formula.2 · -
Re: Interpreting cluster results
Hi Ben, In interactive clustering, we first run a K-mean algorithm. K-mean is sensitive to outliers and noise. So in your case, you end with all the observations in the same cluster and 4 clusters of…1 · -
Re: Interpreting cluster results
Interactive clustering is a 2 steps process. First you train a K-mean, then you can modify yourself the clustering, merging 2 clusters together for example. If you are interested to do your own group…1 · -
Re: Calculate column mean and fill to another column without code
Hi, Yes, you can use the window recipe and you fill only the Aggregations part with "Avg" of the column you want.1 ·