IT-новости про Python, которые стоит знать

Собрали в одном месте самые важные ссылки
читайте нас в Telegram

     04.02.2022       Выпуск 424 (31.01.2022 - 06.02.2022)       Интересные проекты, инструменты, библиотеки

django-ninja 0.17.0

Вышло минорное обновление пакета django-ninja - пакета генерации документации API

- Алиасы полей теперь поддерживают точечный синтаксис переменных шаблона django;
- Улучшена работа с пагинацией;
- Добавлена поддержка типа Union в payload запроса.
- Добавленна команда для выгрузки OpenAPI схемы в файл.
- Теперь вы можете получить доступ к атрибутам экземпляра формы внутри схемы с помощью преобразователей

     31.01.2022       Выпуск 424 (31.01.2022 - 06.02.2022)       Релизы
     24.01.2022       Выпуск 423 (24.01.2022 - 30.01.2022)       Статьи

Torch Hub Series #6: Image Segmentation

In this tutorial, you will learn the concept behind Fully Convolutional Networks (FCNs) for segmentation. In addition, we will see how we can use Torch Hub to import a pre-trained FCN model and use it in our projects to get… The post Torch Hub Series #6: Image Segmentation appeared first on PyImageSearch.

     17.01.2022       Выпуск 422 (17.01.2022 - 23.01.2022)       Статьи
     10.01.2022       Выпуск 421 (10.01.2022 - 16.01.2022)       Статьи

Torch Hub Series #4: PGAN — Model on GAN

In this tutorial, you will learn the architectural details of Progressive GAN, which enable it to generate high-resolution images. In addition, we will see how we can use Torch Hub to import a pre-trained PGAN model and use it in our projects to generate high-quality images.

     29.12.2021       Выпуск 419 (27.12.2021 - 02.01.2022)       Релизы
     27.12.2021       Выпуск 419 (27.12.2021 - 02.01.2022)       Статьи

Torch Hub Series #2: VGG and ResNet

In the previous tutorial, we learned the essence behind Torch Hub and its conception. Then, we published our model using the intricacies of Torch Hub and accessed it through the same. But, what happens when our work requires us to… The post Torch Hub Series #2: VGG and ResNet appeared first on PyImageSearch.

     20.12.2021       Выпуск 418 (20.12.2021 - 26.12.2021)       Статьи

Torch Hub Series #1: Introduction to Torch Hub

In this tutorial, you will learn the basics of PyTorch’s Torch Hub.

     13.12.2021       Выпуск 417 (13.12.2021 - 19.12.2021)       Статьи
     02.12.2021       Выпуск 415 (29.11.2021 - 05.12.2021)       Учебные материалы

Simple multithreading in PyQt/PySide apps with QThreadPool.start()

QThreadPool.start() provides a simpler API for running Python functions using Qt's threadpool.

     01.12.2021       Выпуск 415 (29.11.2021 - 05.12.2021)       Релизы
     01.12.2021       Выпуск 415 (29.11.2021 - 05.12.2021)       Статьи
     29.11.2021       Выпуск 415 (29.11.2021 - 05.12.2021)       Статьи
     25.11.2021       Выпуск 414 (22.11.2021 - 28.11.2021)       Интересные проекты, инструменты, библиотеки

django-db-retry - Django Database Retry

Adds database query retry functionality to the Django ORM in case of network issues / deadlocks.

     22.11.2021       Выпуск 414 (22.11.2021 - 28.11.2021)       Статьи
     19.11.2021       Выпуск 413 (15.11.2021 - 21.11.2021)       Статьи
     08.11.2021       Выпуск 412 (08.11.2021 - 14.11.2021)       Статьи
     04.11.2021       Выпуск 411 (01.11.2021 - 07.11.2021)       Релизы

Schemathesis 3.11 for Workgroups

From this release, due to performance improvements, it is actually possible to use CLI to test huge schemas (a few thousand endpoints) without OOM or waiting a few minutes for tests to start.

     03.11.2021       Выпуск 411 (01.11.2021 - 07.11.2021)       Релизы
     01.11.2021       Выпуск 411 (01.11.2021 - 07.11.2021)       Статьи

Training an object detector from scratch in PyTorch

In this tutorial, you will learn how to train a custom object detector from scratch using PyTorch. This lesson is part 2 of a 3-part series on advanced PyTorch techniques: Training a DCGAN in PyTorch (last week’s tutorial)