Python

Python String to Int, Int to String — step-by-step Python tutorial on Progressive Robot

Python String to Int, Int to String

URL: https://www.progressiverobot.com/python-string-to-int-int-to-string/ In this tutorial, we will learn how to convert python String to int and int to String in python. In our previous tutorial we learned about [Python List append](/community/tutorials/python-list-append-method) function. Python String to Int If you read our previous tutorials, you may notice that at some time we used this conversion. Actually, this […]

Read more
The randint() Method in Python — step-by-step Python tutorial on Progressive Robot

The randint() Method in Python

URL: https://www.progressiverobot.com/randint-method-in-python/ Introduction In this tutorial, we are going to focus on the randint() method in Python. In our previous tutorials, we saw different random number generating methods defined inside the random module in our [Random Number Tutorial](/community/tutorials/python-random-number) in Python. So, as you already know, we need to import the random module in Python first […]

Read more
Создание нейронной сети для перевода языка жестов на английский — step-by-step AI And Machine Learning tutorial on Progressive Robot

Создание нейронной сети для перевода языка жестов на английский

Автор выбрал Code Org для получения пожертвования в рамках программы Write for DOnations. Компьютерное зрение — это подсфера компьютерной науки, задача которой заключается в получении понимания…

Read more
Convert time into hours minutes and seconds in Python — step-by-step Python tutorial on Progressive Robot

Convert time into hours minutes and seconds in Python

URL: https://www.progressiverobot.com/python-convert-time-hours-minutes-seconds/ In this tutorial, we will be talking about time. Don't worry, this isn't a boring history tutorial, rather we will be looking at different ways of converting time in seconds to time in hours, minutes, and seconds. Moving forwards we will be referring to time in hours, minutes and seconds as time in […]

Read more
Установка TensorFlow в Ubuntu 20.04 — step-by-step AI And Machine Learning tutorial on Progressive Robot

Установка TensorFlow в Ubuntu 20.04

Программная библиотека машинного обучения TensorFlow с открытым исходным кодом используется для обучения нейросетей. Каждый узел графика отражает операции, выполняемые нейросетями в многомерных массивах, в форме [графиков потока данных с сохранением…

Read more
How to use the PyTorch torch.max() — step-by-step AI And Machine Learning tutorial on Progressive Robot

How to use the PyTorch torch.max()

URL: https://www.progressiverobot.com/pytorch-torch-max/ In this article, we'll take a look at using the PyTorch torch.max() function. As you may expect, this is a very simple function, but interestingly, it has more than you imagine. Let's take a look at using this function, using some simple examples. NOTE: At the time of writing, the PyTorch version used […]

Read more
Python Counter - Python Collections Counter — step-by-step Python tutorial on Progressive Robot

Python Counter – Python Collections Counter

URL: https://www.progressiverobot.com/python-counter-python-collections-counter/ Python Counter class is part of [Collections](/community/tutorials/python-collections) module. Counter is a subclass of [Dictionary](/community/tutorials/python-dictionary) and used to keep track of elements and their count. Python Counter Counter is an unordered collection where elements are stored as Dict keys and their count as dict value. Counter elements count can be positive, zero or negative […]

Read more
CHAT