Teaching materials for the Convolutional Neural Networks for Visual Recognition (http://cs231n.github.io/python-numpy-tutorial/) classes at Stanford - srigalibe/CS231n-Python-NumPy-Tutorial... (more…)
Read more »
On Friday October 30th at 11:15 AM EDT the Python Software Foundation will be live streaming a remote key generation and signing ceremony to... (more…)
Read more »
Let’s say you want to store a list of integers in Python: list_of_numbers = [] for i in range(1000000): list_of_numbers.append(i) Those numbers can easily fit in a 64-bit integer, so one would hope Python would store those million integers in no more than... (more…)
Read more »
One of the most complicated concepts to wrap our heads around has to be recursion; to understand it well it always helps to have some sort of recursion visualization. In this essay, we build a super-simple yet effective visualizer for recursive functions ... (more…)
Read more »
Python typing koans to learn type-hints in Python3 using Mypy - kracekumar/python-typing-koans... (more…)
Read more »