Errors running defaults #18
falcon-ram
started this conversation in
General
Replies: 1 comment 1 reply
-
you TIMESTEPS should be a multiple of pool_size |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I just tried running DeepTemporalClustering using all defaults. i.e. just running
python DeepTemporalClustering.py
I ended up with an assertion error:
assert(timesteps % pool_size == 0)
On checking the code and using this:
I found out that:
X_train.shape = (930,128,1)
X_train.shape[1] = timesteps = 128
PoolSize = 10 (Default)
input_dim = X_train.shape[-1] = 1
This was using the default CDF data set.
Is this correct or is there some bug in the code. Right now I am thinking that timesteps should actually be X_train.shape[0].
Thank you and regards.
Beta Was this translation helpful? Give feedback.
All reactions