Development

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
Como usar variáveis e constantes em Go — step-by-step Programming tutorial on Progressive Robot

Como usar variáveis e constantes em Go

As variáveis são um importante conceito de programação a dominar. Tratam-se de símbolos que assumem um valor que você está usando em um programa. Este tutorial abordará alguns princípios básicos sobre as variáveis e melhores práticas para usá-las dentro dos programas em Go que você…

Read more
How to Dynamically Import JavaScript with Import Maps — step-by-step Javascript tutorial on Progressive Robot

How to Dynamically Import JavaScript with Import Maps

Build tools are an important part of the development experience, but a spec called import maps will allow you to both import external code into your project without a build tool. In this tutorial, you will create and use import maps in JavaScript to import code without build tools, import external code, and use the code without extra build steps.

Read more
How To Do Math in Go with Operators — step-by-step Programming tutorial on Progressive Robot

How To Do Math in Go with Operators

Effectively performing mathematical operations in programming is an important skill to develop because of how frequently you’ll work with numbers. This tutorial will review operators that we can use with the integer and float data types in Go.

Read more
How to Use a Remote Docker Server to Speed Up Your Workflow — step-by-step Docker tutorial on Progressive Robot

How to Use a Remote Docker Server to Speed Up Your Workflow

Building CPU-intensive images and binaries is a very slow and time-consuming process that can turn your laptop into a space heater at times. In this tutorial, you’ll create a Droplet to the remote Docker server and configure the `docker` command on your local machine to use it.

Read more
CHAT