print pytorch tensors and numpy arrays concisely.
Project description
print_torch
It is often overwhelming to print(tensor) which may flash your screen and you just don't get any information useful.
Instead, use pt(tensor) and it will give you the size, dtype, device, min, max, std, mean, whether has nan, etc. in one line.
>>> import torch
>>> from print_torch import pt
>>> tensor = torch.randn((2,3,4,5))
>>> pt(tensor)
tensor(shape=(2, 3, 4, 5), dtype=float32, min=-2.803, max=2.49, std=1.019, mean=-0.06855, data=[-0.8246, -1.135, 0.1368, 1.56, ... ], device="cpu") >>>
It also works for list of numbers and numpy tensors.
If you have a nested dict/list of pytorch/numpy tensors, you can also pt it, and it will list each element which may be again a tensor in one line.
For example, you can just pt(locals()) in your forward() function in the breakpoint to know all the stats of your local variables.
Don't hesitate to add this tool to your arsenal!
pip install print_torch
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file print_torch-1.3.tar.gz.
File metadata
- Download URL: print_torch-1.3.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04cb325837d699f7a99b9cf064934bd0c6cb9dddc8476f51c77a2184df7e5b12
|
|
| MD5 |
e797ffce567f498b388325d347bb73d0
|
|
| BLAKE2b-256 |
c1c8d3c3d089926d7a5865bba3b2a97cc4e4c38a70f78ccaff26fbe5b28a7bc3
|
File details
Details for the file print_torch-1.3-py3-none-any.whl.
File metadata
- Download URL: print_torch-1.3-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd0c4667261289347b494c8016ea6836946f79112e12c6c65296cb4c5c77fa27
|
|
| MD5 |
1c2fbb70b260892da95ec3efe4b179b8
|
|
| BLAKE2b-256 |
1096fbe749e07a92f6e2ea6d96c9e9e3361d230c5ec0b326549d0934b57192fd
|