format_bytes#

bayesflow.utils.format_bytes(b: int, precision: int = 2, si: bool = False) str[source]#

Format a number of bytes as a human-readable string in the format ‘{value} {prefix}{unit}’.

Parameters:
  • b – The number of bytes to format.

  • precision – The display precision.

  • si – Determines whether to use SI decimal or binary prefixes.

Examples:
>>> format_bytes(1024)
'1.00 KiB'
>>> format_bytes(1024, si=True)
'1.02 kB'