Skip to content

Commit

Permalink
fix import sort
Browse files Browse the repository at this point in the history
  • Loading branch information
Niccolo-Ajroldi committed Oct 3, 2024
1 parent cb7e162 commit 1f59285
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion reference_algorithms/paper_baselines/sam/jax/submission.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Submission file for a SAM optimizer with warmup+cosine LR in Jax."""

import functools
from typing import Dict, Iterator, List, Optional, Tuple, Any
from typing import Any, Dict, Iterator, List, Optional, Tuple

from flax import jax_utils
import jax
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Update submission function in Jax."""
import functools
from typing import Dict, List, Tuple, Any
from typing import Any, Dict, List, Tuple

import jax
from jax import lax
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Batch size and update submission functions in PyTorch."""

from typing import Dict, List, Tuple, Any
from typing import Any, Dict, List, Tuple

from absl import logging
import torch
Expand Down

0 comments on commit 1f59285

Please sign in to comment.