Useful Tools and Python packages

less than 1 minute read

Published:

  • Plot figures: Plotly, draw.io
  • Check cpu usage:
    • top (press E to show GB memory totally, press e to show GB memory for each task. press 1 to show each cpu.)
    • lscpu, vmstat, mpstat, etc.
  • show cpu information: cat /proc/cpuinfo # all cpu informatioin echo "CPU threads: $(grep -c processor /proc/cpuinfo)" # thread number of one CPU grep 'cpu cores' /proc/cpuinfo | uniq # cpu core number nproc --all # thread number of one CPU
  • Remote file browser Raidrive
  • Editor: vscode and PyCharm
  • Other python packages: Numpy, pandas, os, pytorch, tensorflow, copy, random, simpleITK, pandas, matplotlib, glob, threading, csv, datetime, itertools, shutil, typing, multiprocessing, nvidia_smi, filelock, monai, sklearn, tqdm, cv2, unittest, …

Leave a Comment