Skip to content

Commit 1f59285

Browse files
fix import sort
1 parent cb7e162 commit 1f59285

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

reference_algorithms/paper_baselines/sam/jax/submission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Submission file for a SAM optimizer with warmup+cosine LR in Jax."""
22

33
import functools
4-
from typing import Dict, Iterator, List, Optional, Tuple, Any
4+
from typing import Any, Dict, Iterator, List, Optional, Tuple
55

66
from flax import jax_utils
77
import jax

reference_algorithms/target_setting_algorithms/jax_submission_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Update submission function in Jax."""
22
import functools
3-
from typing import Dict, List, Tuple, Any
3+
from typing import Any, Dict, List, Tuple
44

55
import jax
66
from jax import lax

reference_algorithms/target_setting_algorithms/pytorch_submission_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Batch size and update submission functions in PyTorch."""
22

3-
from typing import Dict, List, Tuple, Any
3+
from typing import Any, Dict, List, Tuple
44

55
from absl import logging
66
import torch

0 commit comments

Comments
 (0)