Back next week, and a few announcements
https://thierrymoudiki.github.io/blog/2020/09/04/misc/python/quasirandomizednn/nnetsauce
#Python #DataScience #MachineLearning #rstats #Techtonique

Back next week, and a few announcements
https://thierrymoudiki.github.io/blog/2020/09/04/misc/python/quasirandomizednn/nnetsauce
#Python #DataScience #MachineLearning #rstats #Techtonique

Голосовой ввод в любое окно Windows за секунду. Офлайн, на CPU, без единого гигабайта torch
Голосовой ввод для Windows за ~1 секунду | Полностью локально • CPU • Open Source Как заставить Whisper распознавать речь почти в 4 раза быстрее на обычном CPU без GPU и без облака. Разбираю архитектуру WhisperType, сужение окна энкодера, потоковую обработку аудио, оптимизацию faster-whisper и подводные камни WinAPI.
https://habr.com/ru/articles/1068154/
#Whisper #WhisperType #fasterwhisper #CTranslate2 #SpeechtoText #распознавание_речи #Windows #Python #CPU #Open_Source
After a week of Python coding for a project, I'm craving to replace all my Python code into R.
Before R, I was a Python person for a couple of years and before that few years of Perl. I still from time to time go back to Perl, but I don't miss Python at all. It feels much more limiting than R and Perl.
049 The Significance of List remove - Comprehensive Python In Tamil
Celonis is hiring Lead Applied AI Engineer (Value Engineering) - Scale
🔧 #python #sql #techlead
🌎 Bangalore, India
⏰ Full-time
🏢 Celonis
Job details https://jobsfordevelopers.com/jobs/lead-applied-ai-engineer-value-engineering-scale-at-celonis-com-apr-13-2026-674a07?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
#KAFX
New video:
IOSYS - Cirno's perfect math class
https://youtu.be/NEzTcN_FUzs
The wholly unnecessary blog GUI project begins.
I have a degree in this, you know.
Next project, connect the doorbell button to the Raspberry Pi that currently manages the outdoor lighting, which will grab a photo from the porch camera, attach it to an XMPP message, and send it to everyone in the house.
The controller for my sprinkler system died last year, and the good controllers are ridiculously expensive.
So I spent the afternoon writing a Python script to run my sprinkler system with a Raspberry Pi. I got it wired into an 8 relay module and verified that things are turning on and off like they're supposed to. Now just waiting for a 24VAC transformer, which should be here tomorrow, and my automatic sprinkler system will be back in business.
Been browsing pics I've snapped while at @europython in Kraków and found one of #Click I'd snapped I felt in the moment that @davidism would find amusing...

nnetsauce's introduction as of 2024-02-11 (new version 0.17.0)
https://thierrymoudiki.github.io/blog/2024/02/11/python/quasirandomizednn/nnetsauce-tuto
#Python #DataScience #MachineLearning #rstats #Techtonique

Python Tip #219 (of 365):
Validate your ducks with goose typing.
You can use isinstance() WHILE duck typing. This is called goose typing (coined by Alex Martelli).
>>> from collections.abc import Iterable
>>> isinstance([1, 2, 3], Iterable)
True
Point doesn't inherit from Iterable:
class Point:
def __init__(self, x, y): self.x, self.y = x, y
def __iter__(self): yield from (self.x, self.y)
And yet...
>>> isinstance(Point(1, 2), Iterable)
True
🧵 (1/3)