Skip to content

Commit

Permalink
Merge pull request #83 from bqth29/fix/progressbars
Browse files Browse the repository at this point in the history
Use `tqdm.auto.tqdm` for optimal progressbars display
  • Loading branch information
bqth29 authored Dec 15, 2024
2 parents a9ab8bb + a52f85a commit 68c2541
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 68c2541

Please sign in to comment.