Python

Common Python Tools: Using virtualenv, Installing with Pip, and Managing Packages — step-by-step Linux tutorial on Progressive Robot

Common Python Tools: Using virtualenv, Installing with Pip, and Managing Packages

In this the cloud provider article, we aim to fill you in on not only the basics, but also the logic behind popular Python tools and items as we dive into using them in real life scenarios. We will begin with downloading and installing some common libraries, setting and working with virtual environments (using virtualenv) and managing packages for development and production of your own applications.

Read more
How to Get File Extension in Python — step-by-step Python tutorial on Progressive Robot

How to Get File Extension in Python

We can use [Python os module](/community/tutorials/python-os-module) splitext() function to get the file extension. This function splits the file path into a tuple having two values – root and extension. Getting File Extension in Python Here is a simple program to get the file extension in Python. import os # unpacking the tuple file_name, file_extension = […]

Read more
Добавление аутентификации в ваше приложение с помощью Flask-Login — step-by-step Python tutorial on Progressive Robot

Добавление аутентификации в ваше приложение с помощью Flask-Login

Предоставление пользователям возможности ввода учетных данных для входа — одна из самых распространенных возможностей, добавляемых в веб-приложения. В этой статье мы расскажем, как добавить аутентификацию в ваше приложение Flask с помощью пакета Flask-Login.

Read more
Bias-Variance for Deep Reinforcement Learning: How To Build a Bot for Atari with OpenAI Gym — AI And Machine Learning tutorial on Progressive Robot

Bias-Variance for Deep Reinforcement Learning: How To Build a Bot for Atari with OpenAI Gym

Reinforcement learning is a subfield within control theory, which concerns controlling systems that change over time and broadly includes applications such as self-driving cars, robotics, and bots for games. Throughout this guide, you will use reinforcement learning to build a bot for Atari video games. By following this tutorial, you will have gained an understanding of the fundamental concepts that govern one’s choice of model complexity in machine learning.

Read more
CHAT