Skip to content

Commit

Permalink
use tqdm.auto for optimal progressbar display
Browse files Browse the repository at this point in the history
  • Loading branch information
bqth29 committed Oct 5, 2024
1 parent a9ab8bb commit a52f85a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import torch
from numpy import minimum
from tqdm import tqdm
from tqdm.auto import tqdm

from .environment import ENVIRONMENT
from .simulated_bifurcation_engine import SimulatedBifurcationEngine
Expand Down
2 changes: 1 addition & 1 deletion src/simulated_bifurcation/optimizer/stop_window.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Tuple, Union

import torch
from tqdm import tqdm
from tqdm.auto import tqdm


class StopWindow:
Expand Down

0 comments on commit a52f85a

Please sign in to comment.