Learning Machine Learning for Game Development
ai.googleblog.com
Learning Machine Learning for Game Development
1–10 of 69 posts
Re: Learning Machine Learning for Game Development
#2Re: Learning Machine Learning for Game Development
#3The trickiest bit is deciding exactly what you want your AI to optimise for -- If you want a game where "anyone can win", you end up with coin toss. If you want a game where "skill is everything", you can accidentally end up with "who can click fastest".
On a project I recently worked on (and I'm writing up), we ended up on our 6th or 7th "optimisation function" before we found something where the "AI optimal" seemed actually enjoyable to play.
Of course, if you already have a fairly fixed game, it can be easier to optimise constants, as you already know your target -- but people have also been doing that for a long time previously.
Re: Learning Machine Learning for Game Development
#4How much time and resources would be spent for above mentioned approach compared to ML approach?
I think due to statistical nature of ML, it is seen as kind of an hammer to every problem that might be solved statistically(which there are lots of them) but it might not be the most effective use of engineering resources.
Re: Learning Machine Learning for Game Development
#5Re: Learning Machine Learning for Game Development
#6What if instead of spending time to train the ML model they just made a dummy client with it’s own simple probabilistic state machine or behaviour tree to balance the game? How much time and resources would be spent for above mentioned approach compared to ML approach? I think due to statistical nature of ML, it is seen as kind of an hammer to every problem that might be solved statistically(which there are lots of t…
Re: Learning Machine Learning for Game Development
#7Re: Learning Machine Learning for Game Development
#8This is super cool, but like the other deepmind projects it's a bit frustrating. I've got nothing against "we did something hard with AI and it worked well", but would greatly prefer it to be followed with "... and we're making this available as something you can use too!"
Re: Learning Machine Learning for Game Development
#9Re: Learning Machine Learning for Game Development
#10I'm in this research area, it's facinating, but also (like many things in AI) easy to get wrong. The trickiest bit is deciding exactly what you want your AI to optimise for -- If you want a game where "anyone can win", you end up with coin toss. If you want a game where "skill is everything", you can accidentally end up with "who can click fastest". On a project I recently worked on (and I'm writing up), we ended up…