Advertisement

Latest MachineLearning Activity

Thaumaturge said:
yet Panda3D, at least, offers things like threading within Python

Because of the GIL, Python does not execute multiple threads concurrently – all threads except the one running, will be blocking. When some thread blocks (on I/O or whatever) then another thread can get scheduled and …

11,743 views
Advertisement

@taby Thank you for your reply, Taby. I am building a game where the players drive along with “self-driving” cars. However, the purpose is not to mimic the behavior of real-life self driving cars, instead, I would like to mimic the behavior of human drivers. So the AI Cars need to learn how to driv…

6,836 views

@Ranyo13 This is an interesting and highly complex topic at the same time. Many people will say its not possible

to combine machine learning or deep learning and game AI. This article below that I came across will shed some light on some of the challenges those who went down this path have faced in …

5,780 views
JoeJ
September 25, 2020 07:16 PM

There is a lot of research going on, also based on ML. this is the first thing i've found using google.

But your question seems very broad. Some points:

Interpolation alone is not totally trivial, as we lack a simple way to mix 3D rotations. (In practice, linear quaternion interpolation should do, bu…

6,635 views
khawk
December 13, 2019 05:09 PM
NVIDIA Uses Machine Learning to Extract 3D Models from 2D Images

NVIDIA has published research demonstrating the use of machine learning to infer a 3D model from a single 2D image. From the blog:

In traditional computer graphics, a pipeline renders a 3D model to a 2D screen. But there’s information to be gained from doing the opposite — a model that could infer a…
3,827 views

1024 nailed it. People were fooled into thinking the AI was better than it was. The stuff that happened in there that is GOAP based is easily duplicatable in plenty of architectures such at BTs or utility.

6,860 views

It depends on the task. Personally, I think AI should be left to do hard and repetitive tasks while we humans should move up the ladder and do the jobs that require actual problem solving and creativity.

3,453 views
On 8/20/2019 at 8:08 PM, Lucrecious said:

Not really sure why the other devs are talking about image processing or influence maps - seems like overkill for what OP wants to do.

Because that's what OP said:

On 7/20/2019 at 6:04 PM, Jackrin said:

Hi guys, …

4,715 views
CGAmonster
May 29, 2019 10:49 PM
How EA reaches and delights players using data and AI

The world of games has changed a lot over the years. And as developers continue to innovate, games could change more in the next 5 years, than they did in the last 45.

Games are already much more connected, more social, and ever changing as new content drops all the time.

All of this gen…

2,782 views
Unity ML Agents

Learn about Unity ML-Agents in this article by Micheal Lanham, a tech innovator and an avid Unity developer, consultant, manager, and author of multiple Unity games, graphics projects, and books.

Unity has embraced machine learning and deep reinforcement learning in particular, with the aim of…

20,147 views

Hey Incredicat,

I played and recorded your game.  I recorded my thoughts in the video.
 

 

4,508 views
rserge
January 25, 2019 04:06 PM

We are now filling up the game base for http://probqa.com/ - an interactive game recommendation engine based on probabilistic question-asking system (ProbQA). In each step it asks the user about a game feature and offers multiple choices. The engine also lists top 10 recommended games in each …

2,221 views
rserge
January 25, 2019 04:06 PM

We are now filling up the game base for http://probqa.com/ - an interactive game recommendation engine based on probabilistic question-asking system (ProbQA). In each step it asks the user about a game feature and offers multiple choices. The engine also lists top 10 recommended games in each st…

2,753 views

The School of Information is accepting applications for the PhD program, for the incoming fall 2019 cohort. We are seeking students with interests in machine learning, natural language processing, text retrieval, virtual/mixed reality, or game development/design.

Preferred incoming doctoral …

2,123 views

Hello everyone, my name is Valerio and I'm an expert in business development and product innovation. At the moment I'm working for a big gambling company and I'm also working on a side project to launch a startup aimed at the whole gaming world. I have an idea and I would like the help of this c…

2,658 views

Hi Everyone!

After being in private alpha for a few months, we've now released our AI music engine on the Unity Asset Store in open Beta as a Unity plugin. Melodrive is an engine that generates an infinite music stream that can adapt to the unique and complex requirements of a video game. We…

5,085 views
6 hours ago, Jordan Winslow said:

I noticed how the tones changed with the shark and the jellyfish and I am wondering have you pre-programmed midi melodies to control instrumentation and respond to in-game cues with a sequence of "danger" melodies when danger occurs and "mystery" m…

5,990 views

Hey there,

IADave has a point, typically this thread is reserved for Game AI, and not Natural Language Processing, or other forms of knowledge-based mining algorithms. I haven't worked much with NLTK offered by Python, but have used Naive Bayes/ID3 to perform sentiment analysis on sentences.…

3,261 views
Packt
August 03, 2018 11:09 AM

Artificial Intelligence is one of the hottest technologies currently. From work colleagues to your boss, chances are that most (yourself included) wish to create the next big AI project.

Machine Learning and Artificial Intelligence are revolutionizing the way game developers work.

Packt …

2,337 views
7 hours ago, markypooch said:

Machine Learning is a large field, and often gets mixed in with Deep Learning (Which is a subset of the field). Machine Learning really is open to anyone who can code, and has a basic understanding of linear algebra (though a more fundamental understan…

4,510 views

Nice! Reminds me of GameDev: Arena, which would also be fun to bring back..

3,197 views

That said, there are all sorts of benefits to using a decision tree (or more specifically, a behavior tree) than using a "rule based system". Since you seem very new to game AI (another reason this is a big challenge for you), read the article that Alvaro linked to (it's mine). That will give you…

6,388 views

Just an update.

I spent the last days trying to learn as much as possible about the ML world, i've watched a ton of videos, read lot of articles and got my hands dirty (just a little bit) with two practical courses (https://www.udemy.com/deeplearning/learn/v4/content) and (https://www.udemy.com/…

4,589 views
khawk
September 19, 2017 11:56 PM
Unity Releases Machine Learning Agents

Unity has jumped into the world of machine learning solutions with their open beta release of the Unity Machine Learning Agents SDK (ML-Agents SDK).

Released on Github, the SDK brings machine learning to games, allowing researchers and developers to create intelligent agents that can be tr…

3,683 views
khawk
September 19, 2017 11:56 PM
Unity Releases Machine Learning Agents

Unity has jumped into the world of machine learning solutions with their open beta release of the Unity Machine Learning Agents SDK (ML-Agents SDK).

Released on Github, the SDK brings machine learning to games, allowing researchers and developers to create intelligent agents that can be trai…

4,073 views
slayemin
July 19, 2017 05:59 AM
Designing Intelligent Artificial Intelligence

 

Below is my preliminary draft design for the AI system within Spellbound. I'm slowly migrating away from scripted expert systems towards a more dynamic and fluid AI system based on machine learning and neural networks. I may be crazy to attempt this, but I find this topic fascinating. I en…

9,281 views
sveta_itseez3D
April 06, 2017 09:15 AM
Web SDK for user-generated game avatars

Hi folks,

If you ever tried to create a game character that looks exactly like you - this post is for you. We at itSeez3D have always been dreaming of a game where we can play as ourselves and look realistic and not uncanny at the same time. We have a pretty solid background in 3D scanning a…

2,950 views
Advertisement
Advertisement