전체 글

전체 글

    [논문 리뷰] Grandmaster level in StarCraft II using multi-agent reinforcement learning (AlphaStar)

    [논문 리뷰] Grandmaster level in StarCraft II using multi-agent reinforcement learning (AlphaStar)

    오늘은 학교에서 리뷰했던 논문을 블로그로 정리해보려고 한다. 이번 논문은 강화학습으로 스타크래프트 2를 학습을 하여 그랜드마스터의 MMR을 가진 agent를 만들었다. 알파고와 마찬가지로 네이쳐에 올라왔으며, 아주 복잡한 환경에서 강화학습을 어떻게 진행했는지를 아주 잘 보여주고 있다. Grandmaster level in StarCraft II using multi-agent reinforcement learning | Nature 스타크래프트란?스타크래프트는 고난도의 전술을 세우면서 각 유닛들을 조종해야 하는 게임이다. 3가지 종족이 있고, 작은 베이스에서 시작해서 점점 빌딩을 짓고 유닛을 만들면서 상대방의 건물들을 부수면 이기는 게임이다. 왜 DeepMind는 스타크래프트를 골랐을까사실 간단히 생각해..

    [SQL 배우기] Section 8. Creating Databases and Tables

    Data types in SQL: Boolean True, False Character char, varchar, text Numeric integer, float Temporal date, time, timestamp, interval UUID Array JSON PostgreSQL: Documentation: 16: Chapter 8. Data Types Primary key: a column or a group of columns used to identify a row uniquely in a table\ represented by [PK] in pgAdmin Foreign key: a field or group of fields that references the primary key of th..

    [SQL 배우기] Section 6. Advanced SQL Commands

    The Complete SQL Bootcamp for the Manipulation and Analysis of Data | Udemy Types of time information: TIME: time DATE: date TIMESTAMP: time, date TIMESTAMPTZ: date, time, and timezone The time information cannot be added although it can be removed SHOW ALL: shows all the metadata related to the database can show other details by using other functions such as: SHOW TIMEZONE SELECT NOW() SELECT T..

    [SQL 배우기] Section 5. JOINS

    [SQL 배우기] Section 5. JOINS

    The Complete SQL Bootcamp for the Manipulation and Analysis of Data | Udemy AS: creates an alias for a column to be called into a different name SELECT column AS new_name FROM table we cannot use an alias inside the WHERE operator because it gets executed at the very end of a query useful for renaming the output of the aggregate function JOIN: allows to combine multiple tables main reason for di..