Skip to content

Commit

Permalink
Remove duplicate option (#2593)
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-mccorm authored Oct 4, 2022
1 parent 1caede3 commit f81d29f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ludwig/schema/encoders/sequence_encoders.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ class StackedRNNConfig(BaseEncoderConfig):
)

cell_type: str = schema_utils.StringOptions(
["rnn", "lstm", "lstm_block", "lstm", "ln", "lstm_cudnn", "gru", "gru_block", "gru_cudnn"],
["rnn", "lstm", "lstm_block", "ln", "lstm_cudnn", "gru", "gru_block", "gru_cudnn"],
default="rnn",
description="The type of recurrent cell to use. Available values are: `rnn`, `lstm`, `lstm_block`, `lstm`, "
"`ln`, `lstm_cudnn`, `gru`, `gru_block`, `gru_cudnn`. For reference about the differences between "
Expand Down Expand Up @@ -1045,7 +1045,7 @@ class StackedCNNRNNConfig(BaseEncoderConfig):
)

cell_type: str = schema_utils.StringOptions(
["rnn", "lstm", "lstm_block", "lstm", "ln", "lstm_cudnn", "gru", "gru_block", "gru_cudnn"],
["rnn", "lstm", "lstm_block", "ln", "lstm_cudnn", "gru", "gru_block", "gru_cudnn"],
default="rnn",
description="The type of recurrent cell to use. Available values are: `rnn`, `lstm`, `lstm_block`, `lstm`, "
"`ln`, `lstm_cudnn`, `gru`, `gru_block`, `gru_cudnn`. For reference about the differences between "
Expand Down

0 comments on commit f81d29f

Please sign in to comment.