Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Nov 22, 2023
1 parent 96bcea6 commit 59384c6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion tests/modeldiffs/criteo1tb_resnet/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def key_transform(k):
continue
if 'Linear' in i:
i = i.replace('Linear', 'Dense')
name, count = i.split('_')
name, _ = i.split('_')
block_count = mlp_block_count if mlp_block_count else resnet_block_count
i = name + '_' + str(mlp_count * 3 + block_count)
elif 'weight' in i:
Expand Down
2 changes: 0 additions & 2 deletions tests/modeldiffs/diff.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import logging

from flax import jax_utils
import jax
import numpy as np
Expand Down

0 comments on commit 59384c6

Please sign in to comment.