Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Jaime Buelta: Basic Python for Data Processing Workshop

Link: https://wrongsideofmemphis.com/2021/06/01/basic-python-for-data-processing-workshop/

I’ll be running a workshop at the European ODSC this 8th of June. The objective of the session is to provide some basic understanding of Python as a language to be used for data processing. Python syn
Matt Layman: Episode 13 - Does My Site Work?

Link: https://www.mattlayman.com/django-riffs/13-automated-tests/

On this episode, we will discuss how you can verify that your site works and continues to work. We’re digging into automated testing and how to write tests for your Django apps.
Listen at djangoriffs.
Python Insider: Python 3.10.0b2 is available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/ZAtqT2lu_Es/python-3100b2-is-available.html

After fighting with some release blockers, implementing a bunch of GC traversal functions, and fixing some pending reference leaks, we finally have Python 3.10.0 beta 2 ready for you! Thanks to everyo
PyCoder’s Weekly: Issue #475 (June 1, 2021)

Link: https://pycoders.com/issues/475

#475 – JUNE 1, 2021 View in Browser » Detecting Deforestation From Satellite Images How would you go about detecting deforestation — a contributor to climate change — from satellite images? In t
AI Pool: Dlib face detector's rectangle size

Link: https://ai-pool.com/d/dlib_face_detector_s_rectangle_size

I'm doing face detection and using dlib for it. it works fine, but rectangles are small and only contain a small part of the face. how can I tell dlib to return bigger rectangle, which will include wh
AI Pool: Best Gpu for Deep Learning

Link: https://ai-pool.com/d/best_gpu_for_deep_learning

I'm planning to buy new GPUs and can't figure out which model is good for deep learning. I'm planning to train neural networks on images also some recurrent networks for NLP. What suggestions are ther
AI Pool: Nvidia login loop on ubuntu

Link: https://ai-pool.com/d/nvidia_login_loop_on_ubuntu

I tried to install the Nvidia driver, but currently, I can't log in to my account. It always logs out when I type my credentials. I'm told that this is because of the Nvidia driver. how can I solve th
AI Pool: How to install Nvidia Driver on Ubuntu 18.04

Link: https://ai-pool.com/d/how_to_install_nvidia_driver_on_ubuntu_18_04

I need to install Cuda on my Ubuntu 18.04 pc, but firstly I need to install the Nvidia driver. What is the best and easy way to install it?...
AI Pool: What is the gradient of max pooling function?

Link: https://ai-pool.com/d/what_is_the_gradient_of_max_pooling_function_

How TensorFlow calculates the gradient of some functions like max_pooling, avg_pooling, etc.? ...
Podcast.__init__: Exploring The Patterns And Practices For Deep Learning With Andrew Ferlitsch

Link: https://www.pythonpodcast.com/deep-learning-patterns-and-practices-episode-317/

Deep learning is gaining an immense amount of popularity due to the incredible results that it is able to offer with comparatively little effort. Because of this there are a number of engineers who ar
Python Pool: An In-depth Guide To Adjacency List in Python

Link: https://www.pythonpool.com/adjacency-list-python/?utm_source=rss&utm_medium=rss&utm_campaign=adjacency-list-python

The post An In-depth Guide To Adjacency List in Python appeared first on Python Pool.
A graph is a data structure consisting of nodes and edges. The nodes are the vertices sets in a graph representing
Django Weblog: Django security releases issued: 3.2.4, 3.1.12, and 2.2.24

Link: https://www.djangoproject.com/weblog/2021/jun/02/security-releases/

In accordance with our security release policy, the Django team
is issuing
Django 3.2.4,
Django 3.1.12, and
Django 2.2.24.
These release addresses the security issue detailed below. We encourage all
u
Real Python: Context Managers and Python's with Statement

Link: https://realpython.com/python-with-statement/

The with statement in Python is a quite useful tool for properly managing external resources in your programs. It allows you to take advantage of existing context managers to automatically handle the
Python for Beginners: Deque in Python

Link: https://www.pythonforbeginners.com/deque/deque-in-python


Deque or doubly ended queues are linear data structures with which we can perform last in first out (LIFO) operations as well as first in first out (FIFO) operations. Deques have many applications in
PyCharm: PyCharm 2021.1.2 is out!

Link: http://feedproxy.google.com/~r/Pycharm/~3/AhwsIwIB5-4/

The second minor release of PyCharm 2021.1 contains several bug fixes in different functional areas, from the overall performance and working with Jupyter Notebooks to working with databases.
Take a l
Python Bytes: #236 Fuzzy wuzzy wazzy fuzzy was faster

Link: https://pythonbytes.fm/episodes/show/236/fuzzy-wuzzy-wazzy-fuzzy-was-faster

<p>Sponsored by Sentry:</p>

<ul>
<li>Sign up at <a href="https://pythonbytes.fm/sentry"><strong>pythonbytes.fm/sentry</strong></a></li>
<li>And please, when signing up, click <strong><em>Got a promo
AI Pool: What Does Yolo Mean?

Link: https://ai-pool.com/d/what-does-yolo-mean

I deal with object detection models and meet the name Yolo very often. What Yolo means?...