Questions tagged [tqdm]

Questions related to progress bar tqdm usage in Python or shell.

tqdm is a Python progress bar working both under Python scripts and Unix-like shells.

Resources:

392 questions
-2
votes
1 answer

python (t := tqdm(...)) ... t.set_description works on v3.8.5 but throws an invalid syntax error " := " on v3.7.3. any ideas?

so this works on my pc running v3.8.5 but on my pc with python v3.7.3 it throws a syntax error and points to ' := ' as the error. ls = ['hi', 'hello', 'bye', 'goodbye', 'adios'] for i in (t := tqdm(ls, ncols=103, leave=False, ascii=' #')): …
drebrb
  • 70
  • 1
  • 6
-2
votes
2 answers

how can i use tqdm to visualize the progress of training steps using tf.data.Dataset api?

I want to use tqdm to visualize my cnn network training steps. How can I implement tqdm with tf.data.Dataset() api? Can u show me a sample code? thx!
mr.melon
  • 11
  • 7
1 2 3
26
27