You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the hyperparameters of each primitive are specified individually.
However, there are some scenarios where hyperparameters from two different blocks should match each other.
An example of this are the keras.preprocessing.sequence.pad_sequences and keras.Sequential.LSTMTextClassifier primitives: The pad_sequences primitive has a maxlen hyperparameter that should be exactly the same value that is given to the LSTMTextClassifier as the input_length hyperparameter.
The text was updated successfully, but these errors were encountered:
Currently, the hyperparameters of each primitive are specified individually.
However, there are some scenarios where hyperparameters from two different blocks should match each other.
An example of this are the
keras.preprocessing.sequence.pad_sequences
andkeras.Sequential.LSTMTextClassifier
primitives: Thepad_sequences
primitive has amaxlen
hyperparameter that should be exactly the same value that is given to theLSTMTextClassifier
as theinput_length
hyperparameter.The text was updated successfully, but these errors were encountered: