We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should do something that looks like this to clean the project by using Neuraxle:
deep_learning_seq_classif_pipeline = EpochRepeater(Pipeline([ TrainOnlyWrapper(DataShuffler(seed=42)), MiniBatchSequentialPipeline([ ForEachDataInput(Pipeline([ ToNumpy(np_dtype=np.float32), DefaultValuesFiller(0.0), ])), ClassificationLSTM(n_stacked=2, n_residual=3), ], batch_size=32), ]), epochs=200, fit_only=True)
Where the ClassificationLSTM class contains the actual TensorFlow Code.
ClassificationLSTM
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Should do something that looks like this to clean the project by using Neuraxle:
Where the
ClassificationLSTM
class contains the actual TensorFlow Code.The text was updated successfully, but these errors were encountered: