Talk Python to Me: #320: Python in the Electrical Energy Sector
In this episode, we cover how Python is being used to understand the electrical markets and grid in Australia. Our guest, Jack Simpson, has used Python to uncover a bunch of interesting developments as...
View ArticleAI Pool: Dynamic learning rate in training
I'm using Keras 2.1.* and want to change the learning rate during training. I know about the scheduled callback, but I don't use the fit function and I don't have callbacks. I use train_on_batch. Is it...
View ArticleAI Pool: Cuda Version
How to know the version of Cuda installed on your pc? I'm using Keras with TensorFlow back-end, but I need to detect the version of Cuda in my code. It does not matter the solution is with Keras or...
View ArticleAI Pool: Multiple cuda versions installed in machine
I'm using TensorFlow and I have some old projects which are written with TensorFlow 1.4 and older. Some of them don't work with a new version of Cuda . Can I have multiple Cuda with different versions...
View ArticleAI Pool: Why network overfits too early?
I want to train a neural network model, which basically does binary classification. I can't understand why my network overfits too early. I thought my network is too big and it memorizes the dataset,...
View ArticleAI Pool: What to do when you have small dataset
I'm trying to train a classifier with a neural network, but I've got too small datasets. Each class has about ~1k examples. What is the best approach?...
View ArticleLucas Cimon: Live demo for Hesperides!
Today I finally took the time to put up a live demo website for Hesperides!https://hesperides.herokuapp.comHesperides is an open source tool dedicated to configuration management: it stores...
View Article"Morphex's Blogologue": A python script to calculate placement of poles for a...
I've been working on the cabin, lately clearing out a tree behind the cabin that was a threat to the roof.Some blog posts about some of the work on the cabin here:...
View ArticleMatthew Wright: Indexing time series data in pandas
Indexing time series data in pandas is similar to other types, but there are a number of convenient functions unique to time series.The post Indexing time series data in pandas appeared first on...
View ArticleMike Driscoll: PyDev of the Week: Raghav Bali
This week we welcome Raghav Bali (@Rghv_Bali) as our PyDev of the Week. Raghav is the co-author of Generative AI with Python and TensorFlow 2, a book that teaches you how to create images, text, and...
View ArticleReal Python: Python Practice Problems: Parsing CSV Files
Are you a developer looking for some practice with comma-separated values (CSV) files before an upcoming interview? This tutorial will lead you through a series of Python CSV practice problems to help...
View ArticlePython Morsels: How to make a decorator
TranscriptLet's make a decorator.We're going to make a function decorator: that is a decorator meant for decorating a function (not for decorating a class).What the decorator syntax doesWe have a...
View ArticleTryton News: Tryton's IRC channels are moving to libera.chat
In what looks like a never ending saga the freenode admins have decided to switch to a new IRC daemon thus effectively removing all the registered nicknames and channels. This move has effectively...
View ArticleStack Abuse: Counting Sort in Python
IntroductionCounting sort is a sorting algorithm used to sort elements of an array in linear time. We usually use Counting Sort to sort integer arrays.Counting Sort a stable, non-comparative...
View ArticlePython for Beginners: The Fastest Way to Split a Text File Using Python
Python is one of the most popular programming languages in the world. One reason for its popularity is that Python makes it easy to work with data.Reading data from a text file is a routine task in...
View ArticleReal Python: Using Pandas to Make a Gradebook in Python
One of the jobs that all teachers have in common is evaluating students. Whether you use exams, homework assignments, quizzes, or projects, you usually have to turn students’ scores into a letter grade...
View ArticleRobin Wilson: Py6S v1.9.0 released – plus code cleanup and how I got M1...
Last week I released version 1.9.0 of Py6S– my Python interface to the 6S radiative transfer model.It’s been the first non-bugfix release for quite a while (mainly because I’ve been busy with paid...
View ArticlePython Engineering at Microsoft: Jupyter in Visual Studio Code – June 2021...
We are pleased to announce that the June 2021 release of the Jupyter Extension for Visual Studio Code is now available. If you are working with Python, we recommend downloading the Python extension...
View ArticlePyCoder’s Weekly: Issue #477 (June 15, 2021)
#477 – JUNE 15, 2021View in Browser »Excel, Python, and the Future of Data Science What’s the most widely used tool in data science? Is it pandas or NumPy? Is it the Python language itself? Not really....
View ArticlePython Bytes: #238 A cloud-based file system for Python and a new GUI!
<p><strong>Watch the live stream:</strong></p> <a href='https://www.youtube.com/watch?v=0dk7ZhZwcrM' style='font-weight: bold;'>Watch on YouTube</a><br>...
View Article