PythonHub
2.44K subscribers
2.35K photos
49.4K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
Long Short-Term Memory: From Zero to Hero with PyTorch

Just like us, Recurrent Neural Networks (RNNs) can be very forgetful. This struggle with short-term ...

https://blog.floydhub.com/long-short-term-memory-from-zero-to-hero-with-pytorch/
How Python saves memory when storing strings

Since Python 3, the str type uses Unicode representation. Unicode strings can take up to 4 bytes ...

http://rushter.com/blog/python-strings-and-memory/
A Beginner’s Guide on Recurrent Neural Networks with PyTorch

Recurrent Neural Networks(RNNs) have been the answer to most problems dealing with sequential data ...

https://blog.floydhub.com/a-beginners-guide-on-recurrent-neural-networks-with-pytorch/
Time Complexities Of Python Data Structures

An Important Article For Everyone Using Python Programming…

https://medium.com/fintechexplained/time-complexities-of-python-data-structures-ddb7503790ef
Extracting text from HTML in Python: a very fast approach

When working on NLP problems, sometimes you need to obtain a large corpus of text. The internet ...

http://rushter.com/blog/python-fast-html-parser/
Keras Learning Rate Finder

In this tutorial, you will learn how to automatically find learning rates using Keras. This guide ...

https://www.pyimagesearch.com/2019/08/05/keras-learning-rate-finder/
99 ways to extend the Jupyter ecosystem

The Jupyter ecosystem is very modular and extensible, so there are lots of ways to extend it. This blog post aims to provide a quick summary of the most common ways to extend Jupyter.

https://blog.jupyter.org/99-ways-to-extend-the-jupyter-ecosystem-11e5dab7c54
Writing a simple SOCKS server in Python

This article explains how to write a tiny and basic SOCKS 5 server in Python 3.6. I am assuming ...

http://rushter.com/blog/python-socks-server/