From 8d072df1d7ecb81de3e27b6f86fc8c5f8f97a935 Mon Sep 17 00:00:00 2001 From: Pranjal Tandon Date: Fri, 31 Aug 2018 17:34:56 +0530 Subject: [PATCH] Create README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6fabd5a --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +### Description +Reimplementation of [Soft Actor-Critic: Off-Policy Maximum Entropy Deep Reinforcement +Learning with a Stochastic Actor](https://arxiv.org/pdf/1801.01290.pdf). + +Contributions are welcome. If you find any mistake (very highly possible) or know how to make it more stable, don't hesitate to send a pull request. + +### Run +Use the default hyperparameters. + +#### For SAC (Gaussian Policy): + +``` +python main.py --algo SAC --env-name HalfCheetah-v2 +``` +#### For SAC (Gaussian Mixture Policy) + +``` +python main.py --algo SAC(GMM) --env-name HalfCheetah-v2 --k 4