Code Monkey home page Code Monkey logo

rassh's People

Contributors

savamarius avatar

Watchers

 avatar  avatar

rassh's Issues

In rassh project inside rassh->core->rl->rl.py->rl_run() method's body is missing.

from where to run the main file of this project. When i am trying to run this rl.py file code

import rassh
from rl_task import HASSHTask
from rl_env import HASSHEnv
from pybrain.rl.learners.valuebased import ActionValueTable
from pybrain.rl.agents import LearningAgent
from pybrain.rl.learners import Q,SARSA
from pybrain.rl.experiments import Experiment
from pybrain.rl.explorers import EpsilonGreedyExplorer
import matplotlib as mpl
mpl.use('Agg')
import pylab

import threading

class RL:
def init(self):
self.av_table = ActionValueTable(4, 5)
self.av_table.initialize(0.1)

        learner = SARSA()
        learner._setExplorer(EpsilonGreedyExplorer(0.0))
        self.agent = LearningAgent(self.av_table, learner)

        env = HASSHEnv()

        task = HASSHTask(env)

        self.experiment = Experiment(task, self.agent)

def go(self):
      global rl_params
      rassh.core.constants.rl_params = self.av_table.params.reshape(4,5)[0]
      self.experiment.doInteractions(1)
      self.agent.learn()
     
      #pylab.pcolor(self.av_table.params.reshape(4,5).max(1).reshape(2,2))
      #pylab.savefig('/tmp/plot.png')

def rl_start_thread():
t = threading.Thread(target=rl_run)
#t.daemon = True
t.start()

if name == "main":
rl_run()

it prints the error message as : " name 'rl_run' is not defined "

please provide the proper documentation for the project explaining the details about the installation and running the main method.

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.