@cirosantilli/_file/python/typing_cheat/python/typing_cheat/hello.py by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
The hello world!
@cirosantilli/_file/python/typing_cheat/python/typing_cheat/infer.py by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
@cirosantilli/_file/python/typing_cheat/python/typing_cheat/union.py by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
@cirosantilli/_file/python/pytorch/python/pytorch/matmul.py by
Ciro Santilli 35 Updated 2025-03-28 +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 2025-03-28 +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 small performance drawback (~5% imgs/sec).
How many logical qubits are needed to run Shor's algorithm? by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
Integer factorization algorithms better than Shor's algorithm by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
- 2023 www.schneier.com/blog/archives/2023/01/breaking-rsa-with-a-quantum-computer.html comments on "Factoring integers with sublinear resources on a superconducting quantum processor” arxiv.org/pdf/2212.12372.pdf
A group of Chinese researchers have just published a paper claiming that they can—although they have not yet done so—break 2048-bit RSA. This is something to take seriously. It might not be correct, but it’s not obviously wrong.We have long known from Shor’s algorithm that factoring with a quantum computer is easy. But it takes a big quantum computer, on the orders of millions of qbits, to factor anything resembling the key sizes we use today. What the researchers have done is combine classical lattice reduction factoring techniques with a quantum approximate optimization algorithm. This means that they only need a quantum computer with 372 qbits, which is well within what’s possible today. (The IBM Osprey is a 433-qbit quantum computer, for example. Others are on their way as well.)
@cirosantilli/_file/python/python/sphinx by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
To run each example and see the output run:
./build.sh
xdg-open out/index.html
@cirosantilli/_file/python/sphinx/python/sphinx/hello by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
Minimal example. Gives a hint at how boilerplate heavy Sphinx can be!
@cirosantilli/_file/python/sphinx/python/sphinx/union by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
@cirosantilli/_file/python/sphinx/python/sphinx/class by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
Basic class example.
@cirosantilli/_file/python/sphinx/python/sphinx/virtual_method by
Ciro Santilli 35 Updated 2025-03-28 +Created 1970-01-01
Unlisted articles are being shown, click here to show only listed articles.