Coder Social home page Coder Social logo

m-curl's Introduction

M-CURL: Masked Contrastive Representation Learning for Reinforcement Learning

This repository contains the code for M-CURL.

Installation

All of the dependencies are in the conda_env.yml file. They can be installed manually or with the following command:

conda env create -f conda_env.yml

Instructions

To train an M-CURL agent on the cartpole swingup task, please use script/train.sh from the root of this directory. One example is as follows, and you can modify it to try different environments / hyperparamters.

#!/usr/bin/env bash
set -x
set -e
export PYTHONIOENCODING="UTF-8"
nvidia-smi
export MJKEY_PATH=/path/mjkey.txt
DOMAIN=cartpole
TASK=swingup
SEED=1
RATIO=0.5
LAYER=2
ANNEAL=true
NORMBEFO=false
DROPOOUT=0.1
BSZ=16
LEN=32

CUDA=${1:-0}

cd scripts
EXTRA=''
if [ "$ANNEAL" == 'true' ]
then
  EXTRA+=" --encoder_annealling "
fi
if [ "$NORMBEFO" == 'true' ]
then
  EXTRA+=" --normalize_before "
fi

export MUJOCO_GL=egl
bash train.sh $DOMAIN $TASK -s $SEED -c $CUDA  --mtm_ratio $RATIO $EXTRA --num_attn_layer $LAYER \
--adam_warmup_step 6e3 --dropout $DROPOOUT  --mtm_length $LEN --mtm_bsz $BSZ -d exp  \
--num_train_steps 1000000

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.