All the financial advice you’ll ever need fits on a single index card by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
This is a good concept. For the ammount most people save, having a simple and easy to apply investment thesis is the best way to go.
A person who gives financial advice, notably personal finance advice. Some of them are questinable guru-like beings, and many are on YouTube.
@cirosantilli/_file/python/python/abc_cheat.py by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
@cirosantilli/_file/python/typing_cheat/python/typing_cheat/hello.py by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
The hello world!
@cirosantilli/_file/python/typing_cheat/python/typing_cheat/infer.py by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
@cirosantilli/_file/python/typing_cheat/python/typing_cheat/union.py by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
@cirosantilli/_file/python/pytorch/python/pytorch/matmul.py by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
Matrix multiplication example.
Fundamental since deep learning is mostly matrix multiplication.
NumPy does not automatically use the GPU for it: stackoverflow.com/questions/49605231/does-numpy-automatically-detect-and-use-gpu, and PyTorch is one of the most notable compatible implementations, as it uses the same memory structure as NumPy arrays.
Contains several computer vision models, e.g. ResNet, all of them including pre-trained versions on some dataset, which is quite sweet.
Documentation: pytorch.org/vision/stable/index.html
Organization developing quantum dot quantum computer by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
catalog.ngc.nvidia.com/orgs/nvidia/resources/resnet_50_v1_5_for_pytorch explains:
The difference between v1 and v1.5 is that, in the bottleneck blocks which requires downsampling, v1 has stride = 2 in the first 1x1 convolution, whereas v1.5 has stride = 2 in the 3x3 convolution.This difference makes ResNet50 v1.5 slightly more accurate (~0.5% top1) than v1, but comes with a smallperformance drawback (~5% imgs/sec).
There are unlisted articles, also show them or only show them.