Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pomonam committed Mar 20, 2024
1 parent c38da1f commit 8b3405b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/glue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ python train.py --dataset_name sst2 \

To obtain a pairwise influence scores on maximum of 2000 query data points using `ekfac`, run the following command:
```bash
python analyze.py --query_batch_size 8 \
python analyze.py --dataset_name sst2 \
--query_batch_size 8 \
--train_batch_size 32 \
--dataset_dir ./data \
--checkpoint_dir ./checkpoints \
--factor_strategy ekfac
```
Expand Down
4 changes: 2 additions & 2 deletions examples/glue/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ def main():
logging.basicConfig(level=logging.INFO)

train_dataset = get_glue_dataset(
data_name=args.data_name,
data_name=args.dataset_name,
split="eval_train",
)
eval_dataset = get_glue_dataset(
data_name=args.data_name,
data_name=args.dataset_name,
split="valid",
)

Expand Down

0 comments on commit 8b3405b

Please sign in to comment.