Statistics: Posted by TheKoopa — 21 Mar 2016, 23:23
Statistics: Posted by ZenTractor — 16 Jun 2015, 13:19
I'll do the input processing in C# and use a Matlab macro for training. I'm not sure what the rules are about using Matlab's neural network toolbox, so I may have to write my own implementation.da_monstr wrote:
Out of curiosity : are you using a custom application (if so, what language are you using) or are you using Matlab?
Statistics: Posted by Memto — 16 Jun 2015, 09:31
Statistics: Posted by Nombringer — 21 May 2015, 02:55
Statistics: Posted by ckitching — 18 May 2015, 20:40
Statistics: Posted by ckitching — 18 May 2015, 20:12
SELECT
login.login as player,
b.game_type as game_type,
game_player_stats.faction,
game_player_stats.color,
game_player_stats.team,
game_player_stats.place,
game_player_stats.mean,
game_player_stats.deviation,
game_player_stats.after_mean,
game_player_stats.after_deviation,
game_player_stats.score,
game_player_stats.scoreTime,
b.start_time start_time,
b.end_time as end_time,
b.map_name as map_name,
b.map_file as map_file
FROM
game_player_stats
INNER JOIN
login
ON
game_player_stats.playerId = login.id
INNER JOIN
(
SELECT
game_stats.id,
game_stats.mapId,
game_stats.startTime start_time,
game_stats.EndTime as end_time,
game_stats.gameType as game_type,
table_map.name as map_name,
table_map.filename as map_file
FROM
game_stats
INNER JOIN
table_map
ON
table_map.id = game_stats.mapId
) as b
ON
game_player_stats.gameId = b.id
Statistics: Posted by ckitching — 18 May 2015, 19:29
Statistics: Posted by ckitching — 18 May 2015, 16:16
Statistics: Posted by zeroAPM — 15 May 2015, 17:05