Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
366 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 ...
2
votes
1answer
695 views

Calculate year for end date: PostgreSQL

Background Users can pick dates as shown in the following screen shot: Any starting month/day and ending month/day combinations are valid, such as: Mar 22 to Jun 22 Dec 1 to Feb 28 The second ...
1
vote
3answers
247 views

Delphi: EInvalidOp in neural network class (TD-lambda)

I have the following draft for a neural network class. This neural network should learn with TD-lambda. It is started by calling the getRating() function. But unfortunately, there is an EInvalidOp ...
1
vote
1answer
67 views

comparing temporal sequences

I'm trying to wrap my head around this task and wondering if there is a standard way of doing this or some libraries that would be useful. Certain events are tracked and timed at several data sources ...
1
vote
1answer
98 views

Update Rule in Temporal difference

The update rule TD(0) Q-Learning: Q(t-1) = (1-alpha) * Q(t-1) + (alpha) * (Reward(t-1) + gamma* Max( Q(t) ) ) Then take either the current best action (to optimize) or a random action (to explorer) ...
0
votes
2answers
382 views

How do I OrderBy a DateTime difference in Linq?

I have a table with a CreatedDate column. I want to order by the rows that have been in the database the longest, but need to determine the number of days by subtracting it from DateTime.Now. I ...