deepatari Documentation

Similar documents
git-pr Release dev2+ng5b0396a

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

sensor-documentation Documentation

PyCon APAC 2014 Documentation

Dellve CuDNN Documentation

X Generic Event Extension. Peter Hutterer

Feed Cache for Umbraco Version 2.0

mp3fm Documentation Release Akshit Agarwal

agate-sql Documentation

Sensor-fusion Demo Documentation

utidylib Documentation Release 0.4

BME280 Documentation. Release Richard Hull

MCAFEE THREAT INTELLIGENCE EXCHANGE RESILIENT THREAT SERVICE INTEGRATION GUIDE V1.0

inflection Documentation

disspcap Documentation

XStatic Documentation

Elegans Documentation

twstock Documentation

abstar Documentation Release Bryan Briney

retask Documentation Release 1.0 Kushal Das

dublincore Documentation

aiounittest Documentation

Tailor Documentation. Release 0.1. Derek Stegelman, Garrett Pennington, and Jon Faustman

Instagram PHP Documentation

puppet-diamond Documentation

Spotter Documentation Version 0.5, Released 4/12/2010

Inptools Manual. Steffen Macke

Asthma Eliminator MicroMedic Competition Entry

MatPlotTheme Documentation

Django Mail Queue Documentation

jumpssh Documentation

josync Documentation Release 1.0 Joel Goop and Jonas Einarsson

invenio-formatter Documentation

Firebase PHP SDK. Release

Piexif Documentation. Release 1.0.X. hmatoba

RTI Connext DDS Core Libraries

TWO-FACTOR AUTHENTICATION Version 1.1.0

Open Source Used In Cisco Configuration Professional for Catalyst 1.0

Daedalus Documentation

TENSORRT 4.0 RELEASE CANDIDATE (RC)

ExaFMM. Fast multipole method software aiming for exascale systems. User's Manual. Rio Yokota, L. A. Barba. November Revision 1

CS234 Azure Step-by-Step Setup

Piexif Documentation. Release 1.0.X. hmatoba

CUDNN. DU _v07 December Installation Guide

ProFont began life as a better version of Monaco 9 which is especially good for programmers. It was created circa 1987 by Andrew Welch.

Industries Package. TARMS Inc.

Testworks User Guide. Release 1.0. Dylan Hackers

XEP-0099: IQ Query Action Protocol

HTNG Web Services Product Specification. Version 2014A

KEMP Driver for Red Hat OpenStack. KEMP LBaaS Red Hat OpenStack Driver. Installation Guide

PHP-FCM Documentation

TENSORRT 3.0. DU _v3.0 February Installation Guide

OPi.GPIO Documentation

CuteFlow-V4 Documentation

NVIDIA Tesla Compute Cluster Driver for Windows

SW MAPS TEMPLATE BUILDER. User s Manual

Migration Tool. Migration Tool (Beta) Technical Note

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

Upgrading BankLink Books

Guest Book. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

NVIDIA Release 197 Tesla Driver for Windows

SopaJS JavaScript library package

Quality of Service (QOS) With Tintri VM-Aware Storage

NDIS Implementation Guide

LANDISVIEW Beta v1.0-user Guide

MEAS HTU21D PERIPHERAL MODULE

Statsd Metrics Documentation

VMware vcenter Log Insight Manager. Deployment Guide

HTNG Web Services Product Specification. Version 2011A

User Guide. Calibrated Software, Inc.

clipbit Release 0.1 David Fraser

XTEST Extension Library

Colgate, WI

delegator Documentation

docxtemplater Documentation

Preprocessing of fmri data

NTLM NTLM. Feature Description

Java Relying Party API v1.0 Programmer s Guide

Folder Poll General User s Guide

Bluetooth Low Energy in C++ for nrfx Microcontrollers

NVIDIA DIGITS CONTAINER

RSA Two Factor Authentication

XEP-0087: Stream Initiation

Splunk. Splunk. Deployment Guide

Adobe Connect. Adobe Connect. Deployment Guide

Additional License Authorizations for HPE OneView for Microsoft Azure Log Analytics

Packet Trace Guide. Packet Trace Guide. Technical Note

Transparency & Consent Framework

mqtt-broker Documentation

RTXAGENDA v Use Manual. A program, free and easy to use, to modify your RT4 phonebook, on PC.

Trimble. ecognition. Release Notes

RTXAGENDA v Use Manual. A program, free and easy to use, to modify your RT4, RT5 or RT6 phonebook, on PC.

MEAS TEMPERATURE SYSTEM SENSOR (TSYS01) XPLAINED PRO BOARD

HCP Chargeback Collector Documentation

ClassPad Manager Subscription

Moodle. Moodle. Deployment Guide

Tenable Hardware Appliance Upgrade Guide

Simba Cassandra ODBC Driver with SQL Connector

uniseg-python Documentation

SWTP 6800 Simulator Usage 27-Mar-2012

Transcription:

deepatari Documentation Release Ruben Glatt July 29, 2016

Contents 1 Help 3 1.1 Installation guide............................................. 3 2 API reference 5 2.1 Experiment Classes........................................ 6 2.2 Agent Classes............................................ 6 2.3 Environment Classes....................................... 6 2.4 Learner Classes.......................................... 6 2.5 Memory Classes........................................... 6 2.6 Statistics................................................. 6 3 About 7 3.1 License.................................................. 7 3.2 Developers................................................ 7 3.3 Changelog................................................ 7 4 Indices and tables 9 i

ii

deepatari Documentation, Release This is a framework to support the development of algorithms for intelligent agents in the Atari game playing domain. The idea is to let researcher or programmer focus on the development of algorithms without having to think about the whole environment implementation and to facilitate and generalize the evaluation of these algorithms to make results comparable. Contents 1

deepatari Documentation, Release 2 Contents

CHAPTER 1 Help 1.1 Installation guide This guide will help install all the necessary software in a virtual environment generated with Anaconda. It is a step by step guide which might not be necessary for everyone. If you want to integrate the dependencies into your existing installation please do so. Please be aware that I do not cover the installation of the Nvidia CUDA and CuDNN driver, please follow these instructions: http://docs.nvidia.com/cuda/cuda-getting-started-guide-for-linux/ 1.1.1 Create a working directory Create a folder, where you download all necessary stuff and keep the rest of your system clean: mkdir deepatari_stuff && cd deepatari_stuff 1.1.2 Prepare conda environment If you haven t done it already, install anaconda with instructions from here: http://conda.pydata.org/docs/installation.html Create a conda environment with the basic packages and activate it: conda create --name deepatarienv python=2.7 pip numpy opencv matplotlib source activate deepatarienv 1.1.3 Add non standard packages The rest of the packages should be installed in this order, because they downgrade certain packages which will be upgraded later on again. Download and install Neon [3]: git clone https://github.com/nervanasystems/neon.git cd neon && make sysinstall && cd.. Download and install OpenAI gym [4]: 3

deepatari Documentation, Release git clone https://github.com/openai/gym.git cd gym && pip install -e '.[atari]' && cd.. Install the latest Theano [6] version : pip install --upgrade https://github.com/theano/theano/archive/master.zip Install the latest Lasagne [2] for Theano : pip install --upgrade https://github.com/lasagne/lasagne/archive/master.zip Install Tensorflow (Ubuntu/Linux 64-bit, GPU enabled. Requires CUDA toolkit 7.5 and CuDNN v4. Other options on library page.) [5]: pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.8.0-cp27-none- Install Keras [1]: pip install keras 1.1.4 Install deepatari The setup routine installs some runnable scripts to use directly from the command line: git clone git@github.com:cowhi/deepatari.git cd deepatari && python setup.py install && cd.. Now you should be able to test the installation. 4 Chapter 1. Help

5

deepatari Documentation, Release CHAPTER 2 API reference 2.1 Experiment Classes 2.1.1 Experiment - Base class 2.1.2 AtariExp 2.2 Agent Classes 2.2.1 Agent - Base class 2.2.2 AtariAgent 2.3 Environment Classes 2.3.1 Environment - Base class 2.3.2 AtariEnv 2.4 Learner Classes 2.4.1 Learner - Base class 2.4.2 DQNNeon 2.4.3 DQNLasagne 2.5 Memory Classes 2.5.1 Memory - Base class 2.5.2 ReplayMemory 2.6 Statistics 6 Chapter 2. API reference Some text here:

CHAPTER 3 About 3.1 License The MIT License (MIT) Copyright (c) 2016 Ruben Glatt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 3.2 Developers Ruben Glatt <ruben.glatt@gmail.com> 3.3 Changelog 3.3.1 Version 0.1 Added documentation 7

deepatari Documentation, Release 3.3.2 Version 0.0 Initial commit 8 Chapter 3. About

CHAPTER 4 Indices and tables genindex modindex search 9