Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
milocress committed Jun 8, 2024
1 parent dd92abf commit 78998ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions llmfoundry/utils/config_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class TrainConfig:
optimizer: Dict[str, Any] = MISSING
scheduler: Dict[str, Any] = MISSING
train_loader: Dict[str, Any] = MISSING
device_train_batch_size: int = MISSING
device_train_batch_size: Union[int, float] = MISSING
device_eval_batch_size: int = MISSING
max_duration: Union[int, str] = MISSING
eval_interval: Union[int, str] = MISSING
Expand Down Expand Up @@ -183,7 +183,6 @@ class TrainConfig:

# Fields created by `update_batch_size_info`
n_gpus: int = MISSING
device_train_batch_size: int = MISSING
device_train_grad_accum: str = MISSING


Expand Down

0 comments on commit 78998ef

Please sign in to comment.