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.
Video 1.
All the financial advice you’ll ever need fits on a single index card
. Source.
Finance guru by Ciro Santilli 35 Updated +Created
A person who gives financial advice, notably personal finance advice. Some of them are questinable guru-like beings, and many are on YouTube.
Passive income by Ciro Santilli 35 Updated +Created
python/infer.py by Ciro Santilli 35 Updated +Created
python/dataclass_cheat.py by Ciro Santilli 35 Updated +Created
python/dataclass_hash.py by Ciro Santilli 35 Updated +Created
Python Protocol by Ciro Santilli 35 Updated +Created
@cirosantilli/_file/python/pytorch/python/pytorch/matmul.py by Ciro Santilli 35 Updated +Created
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.
Sample runs on P51 to observe the GPU speedup:
$ time ./matmul.py g 10000 1000 10000 100
real    0m22.980s
user    0m22.679s
sys     0m1.129s
$ time ./matmul.py c 10000 1000 10000 100
real    1m9.924s
user    4m16.213s
sys     0m17.293s
PyTorch model by Ciro Santilli 35 Updated +Created
torchvision by Ciro Santilli 35 Updated +Created
Contains several computer vision models, e.g. ResNet, all of them including pre-trained versions on some dataset, which is quite sweet.
HHL algorithm by Ciro Santilli 35 Updated +Created
QMUL research group by Ciro Santilli 35 Updated +Created
ResNet v1 vs v1.5 by Ciro Santilli 35 Updated +Created
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.