Tagged Questions
The reinforcement-learning tag has no wiki summary.
19
votes
6answers
686 views
How to train an artificial neural network to play Diablo 2 using visual input?
I'm currently trying to get an ANN to play a video game and and I was hoping to get some help from the wonderful community here.
I've settled on Diablo 2. Game play is thus in real-time and from an ...
12
votes
5answers
751 views
Good implementations of reinforced learning?
For an ai-class project I need to implement a reinforcement learning algorithm which beats a simple game of tetris. The game is written in Java and we have the source code. I know the basics of ...
6
votes
1answer
336 views
Support Vector Machines — Better than Artificial Neural Networks in which learning situations?
I know SVMs are supposedly 'ANN killers' in that they automatically select representation complexity and find a global optimum (see here for some SVM praising quotes).
But here is where I'm unclear ...
6
votes
3answers
183 views
C++ Reinforcement learning and smart pointers
I am doing my Masters project on robotic's sensorimotor online learning using reinforcement learning methods (Q,sarsa,TD(λ),Actor-Critic,R,etc). I am currently designing the framework on which both ...
6
votes
1answer
151 views
Are there any active reinforcement learning competitions?
I like doing part-time research in reinforcement learning. In recent years (up to 2009) there was a reinforcement learning competition held at rl-competition.org with some very interesting problems, ...
6
votes
3answers
556 views
How Do I Run Sutton and Barton's “Reinforcement Learning” Lisp Code?
I have been reading a lot about Reinforcement Learning lately, and I have found "Reinforcement Learning: An Introduction" to be an excellent guide. The author's helpfully provice source code for a lot ...
4
votes
2answers
43 views
How to use MinMax trees with Q-Learning?
How to use MinMax trees with Q-Learning?
I want to implement a Q-Learning connect four agent and heard that adding MinMax trees into it helps.
4
votes
3answers
211 views
Are neural networks really abandonware?
I am planning to use neural networks for approximating a value function in a reinforcement learning algorithm. I want to do that to introduce some generalization and flexibility on how I represent ...
4
votes
2answers
86 views
Reinforcement Learning With Variable Actions
All the reinforcement learning algorithms I've read about are usually applied to a single agent that has a fixed number of actions. Are there any reinforcement learning algorithms for making a ...
3
votes
2answers
129 views
C++ Reinforcement Learning Library
I have been looking for a C++ Library that implements Reinforcement Learning Algorithms but was not very satisfied with the results.
I found the Reinforcement Learning Toolbox 2.0 from the TU Graz ...
3
votes
2answers
160 views
What machine learning algorithm should I use for Connect 4?
I have an AI that is good at playing Connect 4 (using minimax). Now I want to use some machine learning algorithm to learn from this AI that I have, and I would like to do that by just letting them ...
3
votes
3answers
344 views
TD(λ) in Delphi/Pascal (Temporal Difference Learning)
I have an artificial neural network which plays Tic-Tac-Toe - but it is not complete yet.
What I have yet:
the reward array "R[t]" with integer values for every timestep or move "t" (1=player A ...
3
votes
1answer
263 views
Reinforcement learning toy project
My toy project to learn & apply Reinforcement Learning is:
- An agent tries to reach a goal state "safely" & "quickly"....
- But there are projectiles and rockets that are launched upon the ...
3
votes
1answer
568 views
Reinforcement learning in C#
I intend to use Reinforcement learning in my project but I do not know much how to implement it..
So I am looking for a library with different RL algorithms that I can use in my C# project..
Thanks
...
3
votes
2answers
205 views
Negative rewards in QLearning
Let's assume we're in a room where our agent can move along the xx and yy axis. At each point he can move up, down, right and left. So our state space can be defined by (x, y) and our actions at each ...
2
votes
2answers
47 views
Neural Network Learning Without Training Values
I am wondering how to go about training a neural network without providing it with training values. My premise for this is that the neural network(s) will be used on a robot that can receive ...
2
votes
1answer
43 views
Reinforcement learning of a policy for multiple actors in large state spaces
I have a real-time domain where I need to assign an action to N actors involving moving one of O objects to one of L locations. At each time step, I'm given a reward R, indicating the overall success ...
2
votes
1answer
32 views
Want to implement a reinforcement learning connect four agent
I want to implement a reinforcement learning connect four agent.
I am unsure how to do so and how it should look. I am familiar with the theoretical aspects of reinforcement learning but don't know ...
2
votes
1answer
71 views
What is the preferred machine learning technique for building a real-time game player simulator? [closed]
I've set out to build an AI-engine that learns to play Tetris, i.e. an engine that can improve it's performance, perhaps by adjusting its heuristics, and so forth. Let's say that I've got the GUI out ...
2
votes
1answer
113 views
Reinforcement Learning Beginner Projects [closed]
I once read the book "Reinforcement Learning An Introduction" and found it quite interesting. A lot of time has gone by and I became interested in the topic again.
I would like to try out RL and ...
2
votes
3answers
94 views
Generalizing Q-learning to work with a continuous *action* space
I'm trying to get an agent to learn the mouse movements necessary to best perform some task in a reinforcement learning setting (i.e. the reward signal is the only feedback for learning).
I'm hoping ...
2
votes
1answer
219 views
Reinforcement learning: Differences between QLearning and SarsaTD?
I apologize if the question doesn't fit any programming language specifications.
If it is of real importance, I'm using C++.
I'm comparing learning algorithms, and although I know that Sarsa is ...
2
votes
1answer
206 views
SARSA algorithm
I am having trouble understanding the SARSA algorithm:
http://en.wikipedia.org/wiki/SARSA
In particular, when updating the Q value what is gamma? and what values are used for s(t+1) and a(t+1)?
Can ...
2
votes
2answers
231 views
What are the uses of recurrent neural networks when using them with Reinforcement Learning?
I do know that feedforward multi-layer neural networks with backprop are used with Reinforcement Learning as to help it generalize the actions our agent does. This is, if we have a big state space, we ...
1
vote
2answers
74 views
Reinforcement learning with neo4j: make 2 copies of the graph vs store 2 copies of all values on 1 graph
I'm planning on running a machine learning algorithm that learns node values and edge weights. The algorithm is very similar to the value iteration algorithm here. Each node represents a location and ...
1
vote
0answers
14 views
Rewards in Q-Learning and in TD(lambda)
How do rewards in those two RL techniques work? I mean, they both improve the policy and the evaluation of it, but not the rewards.
How do I need to guess them from the beginning?
1
vote
0answers
130 views
XOR Hebbian test/example neural network
I just finished writing some code that runs a hebbian learning feedforward neural network. I've done a back propagation neural network before and the first thing i did to make sure it worked was too ...
1
vote
1answer
77 views
Reinforcement Learning - Optimizing Weights Given Scores
I am working on a project that has a simulated robot exploring an unknown, but patterned environment (such as an office building) by moving around to predefined "sensing locations". In other words, at ...
1
vote
1answer
121 views
Q learning algorithm-convergence on a loop(absorbing) state
This question is to do with Q-learning.
Please consider the following:
A loop(absorbing) state J- with reward 100 to go from J to J(J is the final state-the reward from going from I to J is also ...
1
vote
2answers
108 views
Reducing the number of markov-states in reinforcement learning
I've started toying with reinforcement learning (using the Sutton book). I fail to fully understand is the paradox between having to reduce the markov state space while on the other hand not making ...
1
vote
0answers
94 views
Implementing HexQ Algorithm
Does anyone know if there's an open source implementation (in any language) of the HexQ algorithm for hierarchy discovery in reinforcement learning, or something like it? I'd like to evaluate it in ...
1
vote
2answers
117 views
Reinforcement learning And POMDP
I am trying to use Multi-Layer NN to implement probability function in Partially Observable Markov Process..
I thought inputs to the NN would be: current state, selected action, result state;
The ...
1
vote
1answer
229 views
Alpha and Gamma parameters in QLearning
What difference to the algorithm does it make having a big or small gamma value? In my optic, as long as it is neither 0 or 1, it should work exactly the same. On the other side, whatever gamma I ...
1
vote
1answer
281 views
Improving Q-Learning
I am currently using Q-Learning to try to teach a bot how to move in a room filled with walls/obstacles. It must start in any place in the room and get to the goal state(this might be, to the tile ...
1
vote
1answer
394 views
Generalization functions for Q-Learning
I have to do some work with Q Learning, about a guy that has to move furniture around a house (it's basically that). If the house is small enough, I can just have a matrix that represents ...
0
votes
1answer
41 views
Best algorithm for reinforcement learning for a four in a row game
What is the best algorithm for reinforcement learning for a four in a row game.
I want to build a four in a row game that will use one of the RL algorithms to play:
Q-Learning, MinMax etc.
What is ...
0
votes
0answers
73 views
I am integrating recommendation engines to google spreadsheets ,any pointers? [closed]
any question comments/suggestion to improve this question are welcome In such a way that data in n sheets is input for recommending the feed for n+1th sheet.
I am currently playing with google ...
0
votes
1answer
94 views
How to Learn the Reward Function in a Markov Decision Process
What's the appropriate way to update your R(s) function during Q-learning? For example, say an agent visits state s1 five times, and receives rewards [0,0,1,1,0]. Should I calculate the mean reward, ...
0
votes
0answers
36 views
switching from unclassfied to classfied learning [closed]
I am working on a research-oriented system of collaborating agents
The agents perform many stochastic experiments (thousands per second), interacting with each other, in a complex high-dimension ...
0
votes
2answers
96 views
Looking for ideas/references/keywords: adaptive-parameter-control of a search algorithm (online-learning)
I'm looking for ideas/experiences/references/keywords regarding an adaptive-parameter-control of search algorithm parameters (online-learning) in combinatorial-optimization.
A bit more detail:
I ...
0
votes
3answers
187 views
Learning the Structure of a Hierarchical Reinforcement Task
I've been studying hierachial reinforcement learning problems, and while a lot of papers propose interesting ways for learning a policy, they all seem to assume they know in advance a graph structure ...
0
votes
1answer
258 views
Reinforcement learning with neural networks
I am working on a project with RL & NN
I need to determine the action vector structure which will be fed to a neural network..
I have 3 different actions (A & B & Nothing) each with ...
0
votes
1answer
71 views
QLearning and never-ending episodes
Let's imagine we have an (x,y) plane where a robot can move. Now we define the middle of our world as the goal state, which means that we are going to give a reward of 100 to our robot once it reaches ...