Skip to content

Commit

Permalink
Merge branch 'main' into fix-conversion-from-hf
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-Anthony authored Oct 31, 2023
2 parents 71ca6cf + f574f22 commit 7c50e77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configs/neox_arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Logging Arguments

- **git_hash**: str

Default = 4579a33
Default = 2ff807d

current git hash of repository

Expand Down
2 changes: 1 addition & 1 deletion megatron/neox_arguments/neox_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class NeoXArgsOptimizer(NeoXArgsTemplate):
"adam", "onebitadam", "cpu_adam", "cpu_torch_adam", "sm3", "madgrad_wd", "sgd", "lion"
] = "adam"
"""
Type of optimizer to use. Choose from ['adam', 'onebitadam', 'cpu_adam', 'cpu_torch_adam', 'sm3', 'madgrad_wd', 'sgd']
Type of optimizer to use. Choose from ['adam', 'onebitadam', 'cpu_adam', 'cpu_torch_adam', 'sm3', 'madgrad_wd', 'sgd', 'lion']
NOTE: sgd will use MuSGD from Mup. Mup must be enabled for this optimizer.
"""

Expand Down
2 changes: 1 addition & 1 deletion tools/datasets/corpora.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def tokenize(self):
[os.path.join(parent_folder, os.path.basename(url)) for url in self.urls]
)

cmd = f"python tools/preprocess_data.py \
cmd = f"python tools/datasets/preprocess_data.py \
--input {jsonl_filepath} \
--output-prefix {parent_folder}/{self.name} \
--vocab {self.vocab_file} \
Expand Down

0 comments on commit 7c50e77

Please sign in to comment.