Skip to content

Commit

Permalink
Remove type ignore (#1421)
Browse files Browse the repository at this point in the history
  • Loading branch information
dakinggg authored Aug 3, 2024
1 parent 8defa8f commit 38dcf1e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions llmfoundry/utils/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ def build_eval_loaders(
# Load the eval data to fail fast. metrics will get added
# later in add_metrics_to_eval_loaders, after the model is loaded
metric_names=[],
# TODO: Fix type in Composer
device_eval_microbatch_size=device_eval_batch_size, # type: ignore
device_eval_microbatch_size=device_eval_batch_size,
)
evaluators.append(eval_loader)
return evaluators
Expand Down

0 comments on commit 38dcf1e

Please sign in to comment.