Hi in the documentation for the DTC object, found in DeepTemporalClustering.py, it is indicated that the timesteps param can be variable. However when I instantiate as follows:
dtc = DTC(n_clusters=3,
input_dim=X_train.shape[-1],
timesteps=None,
n_filters=50,
kernel_size=10,
strides=1,
pool_size=None,
n_units=[50, 1],
alpha=1,
dist_metric='eucl',
cluster_init='kmeans',
heatmap=False)
I get an error. There is an assert which brings up a typeError.
TypeError: unsupported operand type(s) for %: 'NoneType' and 'int'
Should I be using 0 instead of None?
Hi in the documentation for the DTC object, found in DeepTemporalClustering.py, it is indicated that the timesteps param can be variable. However when I instantiate as follows:
I get an error. There is an assert which brings up a typeError.
Should I be using 0 instead of None?