Questions tagged [mdp]

Spring provides a JMS abstraction framework that simplifies the use of the JMS API and shilds the user from differences between the JMS 1.0.2 and 1.1 APIs. Spring offers a solution to create Message driven POJOs(MDPs) in a way that does not tie a user to an EJB container

Ref: http://docs.spring.io/spring/docs/2.5.6/reference/jms.html

28 questions
1
vote
3 answers

Analyse crash dumps programmatically

Is there any api's which load a crash dump, symbols from the symbol store and then allow programmatic access to the information? I want to create a tool to auto process crash dumps and produce a report based on them.
Lodle
  • 31,277
  • 19
  • 64
  • 91
0
votes
0 answers

Q-Learning, chosen action takes place with a probability

In my problem I have predefined state and action spaces but when the agent decides to take an action, this action can take place as desired action can take place partially action not applicable at all So the outcome of the action at each step…
0
votes
0 answers

List of Map of Tuples for MDP

I am trying to implement an MDP for the first time. Each state is a tuple of four variables. I want to implement a transition table, that maps each state and action to the next state. transition_model = [tuple(x) for x in…
Schnee
  • 1
  • 1
0
votes
1 answer

How can I transfer a file using MDP toward TWRP?

I've been trying to install the Pixel Experience ROM. I reset my Samsung Galaxy S7, opened TWRP, and enabled MDP. However, when I open my File Explorer on my PC and open my system folder, nothing shows. "The folder is empty." I'm trying to figure…
Sava
  • 23
  • 1
  • 5
0
votes
2 answers

Why does initialising the variable inside or outside of the loop change the code behaviour?

I am implementing policy iteration in python for the gridworld environment as a part of my learning. I have written the following code: ### POLICY ITERATION ### def policy_iter(grid, policy): ''' Perform policy iteration to find the best…
0
votes
1 answer

Are these two different formulas for Value-Iteration update equivalent?

While studying MDP via different sources, I came across two different formulas for the Value update in Value-Iteration algorithm. The first one is (the one on Wikipedia and a couple of books): . And the second one is (in some questions here on…
jaja360
  • 45
  • 1
  • 5
0
votes
1 answer

MDP implementation using python - dimensions

I have problem in implementing mdp (markov decision process) by python. I have these matrices: states: (1 x n) and actions: (1 x m) .Transition matrix is calculated by this code: p = np.zeros((n,n)) for t in range(l): # my data is a 1x100…
Nasrin
  • 1
  • 4
0
votes
1 answer

Creating an MDP // Artificial Intelligence for 2D game w/ multiple terminals

so I'm sure everyone has heard about the Berkeley Pac-Man AI challenge at some point or another. A while ago I created a 2D platformer (doesn't scroll) and figured it would be pretty cool to take some inspiration from this project but create an AI…
0
votes
1 answer

not updating ng-model value

I have my code as below Inside controller : $scope.starttime = '10:00'; Inside html
CodeWithCoffee
  • 1,896
  • 2
  • 14
  • 36
0
votes
1 answer

MDP - techniques generating transition probability

I am working a MDP car supply and demand problem as follows and was thinking whether there is any techniques to generate the transition probability matrix automatically rather than manually. Assume the demand is as follow: time, station1, …
puzzled
  • 1
  • 1
0
votes
1 answer

Converting WebLogic MDBs to Spring Message-Driven POJOs

I have an application built on WebLogic 11b (10.3.4) using MDBs. I'm trying to convert these to Spring MDPs. Here is the MDB in question: @MessageDriven(activationConfig = { @ActivationConfigProperty(propertyName = "ejbName", propertyValue =…
Brett Slocum
  • 390
  • 1
  • 5
  • 21
0
votes
1 answer

How to know if a Spring MDP Listener is Alive?

I have a Spring MDP listener deployed as a war that listens to a JMS queue and replies back for synchronous request-reply messages. What is the best way to monitor if the listener is alive ? Or think it more of how to set up a monitor for a web app…
-1
votes
1 answer

MDP: How to calculate the chances of each possible result for a sequence of actions?

I've got a MDP problem with the following environment (3x4 map): with the possible actions Up/Down/Right/Left and a 0.8 chance of moving in the right direction, 0.1 for each adjoining direction (e.g. for Up: 0.1 chance to go Left, 0.1 chance to go…
Skyfe
  • 591
  • 1
  • 7
  • 18
1
2