ciaran-regan-ie commited on
Commit
39a3b55
·
1 Parent(s): 15ae0ac
Files changed (1) hide show
  1. tasks/parity/train.py +1 -1
tasks/parity/train.py CHANGED
@@ -35,7 +35,7 @@ def parse_args():
35
  parser = argparse.ArgumentParser(description="Train CTM on Parity Task")
36
 
37
  # Model Architecture
38
- parser.add_argument('--model_type', type=str, default="ctm", choices=['ctm', 'lstm'], help='Sequence length for parity task.')
39
  parser.add_argument('--parity_sequence_length', type=int, default=64, help='Sequence length for parity task.')
40
  parser.add_argument('--d_model', type=int, default=1024, help='Dimension of the model.')
41
  parser.add_argument('--d_input', type=int, default=512, help='Dimension of the input projection.')
 
35
  parser = argparse.ArgumentParser(description="Train CTM on Parity Task")
36
 
37
  # Model Architecture
38
+ parser.add_argument('--model_type', type=str, default="ctm", choices=['ctm', 'lstm'], help='The type of model to train.')
39
  parser.add_argument('--parity_sequence_length', type=int, default=64, help='Sequence length for parity task.')
40
  parser.add_argument('--d_model', type=int, default=1024, help='Dimension of the model.')
41
  parser.add_argument('--d_input', type=int, default=512, help='Dimension of the input projection.')